repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
15 lines
311 B
C
15 lines
311 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2019 Google LLC
|
|
*
|
|
* This provides additional flags used by x86.
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_X86_IRQ_H
|
|
#define _DT_BINDINGS_INTERRUPT_CONTROLLER_X86_IRQ_H
|
|
|
|
#define X86_IRQ_TYPE_SHARED (1 << 4)
|
|
#define X86_IRQ_TYPE_WAKE (1 << 5)
|
|
|
|
#endif
|