mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
35 lines
990 B
C
35 lines
990 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2011
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
*/
|
|
#ifndef _DV_AINTC_DEFS_H_
|
|
#define _DV_AINTC_DEFS_H_
|
|
|
|
struct dv_aintc_regs {
|
|
unsigned int fiq0; /* 0x00 */
|
|
unsigned int fiq1; /* 0x04 */
|
|
unsigned int irq0; /* 0x08 */
|
|
unsigned int irq1; /* 0x0c */
|
|
unsigned int fiqentry; /* 0x10 */
|
|
unsigned int irqentry; /* 0x14 */
|
|
unsigned int eint0; /* 0x18 */
|
|
unsigned int eint1; /* 0x1c */
|
|
unsigned int intctl; /* 0x20 */
|
|
unsigned int eabase; /* 0x24 */
|
|
unsigned char rsvd0[8]; /* 0x28 */
|
|
unsigned int intpri0; /* 0x30 */
|
|
unsigned int intpri1; /* 0x34 */
|
|
unsigned int intpri2; /* 0x38 */
|
|
unsigned int intpri3; /* 0x3c */
|
|
unsigned int intpri4; /* 0x40 */
|
|
unsigned int intpri5; /* 0x44 */
|
|
unsigned int intpri6; /* 0x48 */
|
|
unsigned int intpri7; /* 0x4c */
|
|
};
|
|
|
|
#define dv_aintc_regs ((struct dv_aintc_regs *)DAVINCI_ARM_INTC_BASE)
|
|
|
|
#define DV_AINTC_INTCTL_IDMODE (1 << 2)
|
|
|
|
#endif /* _DV_AINTC_DEFS_H_ */
|