diff options
author | Jon Hunter <jonathanh@nvidia.com> | 2016-06-07 17:12:32 +0200 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2016-06-13 12:53:52 +0200 |
commit | cdbb813db6925f9dcd352841d8ba28f2edd83ff8 (patch) | |
tree | a13e0fea29fae0874d6d49305620da394f8ec6ef /drivers/irqchip/irq-gic-common.c | |
parent | irqchip/gic: Add helper function for chip initialisation (diff) | |
download | linux-cdbb813db6925f9dcd352841d8ba28f2edd83ff8.tar.xz linux-cdbb813db6925f9dcd352841d8ba28f2edd83ff8.zip |
irqchip/gic: Prepare for adding platform driver
To support GICs that require runtime power management, it is necessary
to add a platform driver, so that the probing of the chip can be
deferred if resources, such as a power-domain, is not yet available.
To prepare for adding a platform driver:
1. Drop the __init section from the gic_dist_config() so this can be
re-used by the platform driver.
2. Add prototypes for functions required by the platform driver to the
GIC header file so they can be re-used.
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'drivers/irqchip/irq-gic-common.c')
-rw-r--r-- | drivers/irqchip/irq-gic-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-gic-common.c b/drivers/irqchip/irq-gic-common.c index 89e7423f0ebb..9ae71804b5dd 100644 --- a/drivers/irqchip/irq-gic-common.c +++ b/drivers/irqchip/irq-gic-common.c @@ -90,8 +90,8 @@ int gic_configure_irq(unsigned int irq, unsigned int type, return ret; } -void __init gic_dist_config(void __iomem *base, int gic_irqs, - void (*sync_access)(void)) +void gic_dist_config(void __iomem *base, int gic_irqs, + void (*sync_access)(void)) { unsigned int i; |