diff options
author | Alim Akhtar <alim.akhtar@samsung.com> | 2017-01-04 13:54:20 +0530 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2017-02-08 13:54:11 +0000 |
commit | e3c484b183d3bbef0f0df527e10359163f0bb1db (patch) | |
tree | d29c10c752e1e098454bb704a8eae41bf79b5791 /include/linux/irqchip | |
parent | 6a25ad3a9f9832f24df7987227122b8359f05c8e (diff) |
irqchip/gic-v3: Remove duplicate definition of GICD_TYPER_LPIS
GICD_TYPER_LPIS macro is defined twice in this file. This patch removes the
duplicate entry.
Fixes: f5c1434c217f ("irqchip: GICv3: rework redistributor structure")
Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'include/linux/irqchip')
-rw-r--r-- | include/linux/irqchip/arm-gic-v3.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/irqchip/arm-gic-v3.h b/include/linux/irqchip/arm-gic-v3.h index 400ed7ad2bff..725e86b506f3 100644 --- a/include/linux/irqchip/arm-gic-v3.h +++ b/include/linux/irqchip/arm-gic-v3.h @@ -73,7 +73,6 @@ #define GICD_TYPER_ID_BITS(typer) ((((typer) >> 19) & 0x1f) + 1) #define GICD_TYPER_IRQS(typer) ((((typer) & 0x1f) + 1) * 32) -#define GICD_TYPER_LPIS (1U << 17) #define GICD_IROUTER_SPI_MODE_ONE (0U << 31) #define GICD_IROUTER_SPI_MODE_ANY (1U << 31) |