mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-15 04:25:22 +00:00
This avoids asm files from having to explicitly define the _ASMLANGUAGE symbol themselves. Change-Id: I71f5a169f75d7443a58a0365a41c55b20dae3029 Signed-off-by: Benjamin Walsh <walsh.benj@gmail.com>
20 lines
293 B
ArmAsm
20 lines
293 B
ArmAsm
/*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief LOAPIC spurioys interrupt handler
|
|
*/
|
|
|
|
#include <kernel_structs.h>
|
|
#include <arch/x86/asm.h>
|
|
|
|
GTEXT(_loapic_spurious_handler)
|
|
|
|
SECTION_FUNC(TEXT, _loapic_spurious_handler)
|
|
iret
|
|
|