File: x86-irq.h

package info (click to toggle)
qemu 1%3A10.1.2%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 415,964 kB
  • sloc: ansic: 4,763,605; pascal: 115,173; python: 105,698; asm: 68,687; sh: 53,146; makefile: 27,519; perl: 18,863; cpp: 11,443; xml: 3,629; objc: 2,877; yacc: 2,505; php: 1,299; tcl: 1,296; lex: 1,110; sql: 71; awk: 43; sed: 35; javascript: 7
file content (14 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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