1/*
2 * Copyright (c) 2015 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/**
8 * @file
9 * @brief LOAPIC spurious interrupt handler
10 */
11
12#include <zephyr/kernel_structs.h>
13#include <zephyr/arch/x86/ia32/asm.h>
14
15	GTEXT(z_loapic_spurious_handler)
16
17SECTION_FUNC(PINNED_TEXT, z_loapic_spurious_handler)
18	iret
19
20