diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-19 21:32:32 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-01-24 12:07:18 +0800 |
commit | 0bdce0751b789dea287f30fce272215a4dcd0ed2 (patch) | |
tree | 9710d2e05b30c7e84cf65cd63c5a903fcf4c71b8 /arch/x86/cpu/irq.c | |
parent | 0ac8b1f437aa71c205f498d068d9d097cf72ce03 (diff) | |
download | u-boot-imx-0bdce0751b789dea287f30fce272215a4dcd0ed2.zip u-boot-imx-0bdce0751b789dea287f30fce272215a4dcd0ed2.tar.gz u-boot-imx-0bdce0751b789dea287f30fce272215a4dcd0ed2.tar.bz2 |
dm: x86: Drop the weak cpu_irq_init() function
There are no callers now. Platforms which need to set up interrupts their
own way can implement an interrupt driver. Drop this function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/irq.c')
-rw-r--r-- | arch/x86/cpu/irq.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/x86/cpu/irq.c b/arch/x86/cpu/irq.c index d6151e0..0b36ace 100644 --- a/arch/x86/cpu/irq.c +++ b/arch/x86/cpu/irq.c @@ -83,11 +83,6 @@ static inline void fill_irq_info(struct irq_info *slot, int bus, int device, slot->irq[pin - 1].bitmap = irq_router.irq_mask; } -__weak void cpu_irq_init(void) -{ - return; -} - static int create_pirq_routing_table(struct udevice *dev) { const void *blob = gd->fdt_blob; @@ -227,8 +222,6 @@ int irq_router_common_init(struct udevice *dev) { int ret; - cpu_irq_init(); - ret = create_pirq_routing_table(dev); if (ret) { debug("Failed to create pirq routing table\n"); |