diff options
-rw-r--r-- | arch/powerpc/include/asm/mpic.h | 3 | ||||
-rw-r--r-- | arch/powerpc/sysdev/mpic.c | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/mpic.h b/arch/powerpc/include/asm/mpic.h index 6ce63a7662f8..98697611e7b3 100644 --- a/arch/powerpc/include/asm/mpic.h +++ b/arch/powerpc/include/asm/mpic.h | |||
@@ -391,6 +391,9 @@ extern struct bus_type mpic_subsys; | |||
391 | #define MPIC_REGSET_STANDARD MPIC_REGSET(0) /* Original MPIC */ | 391 | #define MPIC_REGSET_STANDARD MPIC_REGSET(0) /* Original MPIC */ |
392 | #define MPIC_REGSET_TSI108 MPIC_REGSET(1) /* Tsi108/109 PIC */ | 392 | #define MPIC_REGSET_TSI108 MPIC_REGSET(1) /* Tsi108/109 PIC */ |
393 | 393 | ||
394 | /* Get the version of primary MPIC */ | ||
395 | extern u32 fsl_mpic_primary_get_version(void); | ||
396 | |||
394 | /* Allocate the controller structure and setup the linux irq descs | 397 | /* Allocate the controller structure and setup the linux irq descs |
395 | * for the range if interrupts passed in. No HW initialization is | 398 | * for the range if interrupts passed in. No HW initialization is |
396 | * actually performed. | 399 | * actually performed. |
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index f72b592d60cc..2c817a736b77 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
@@ -1219,6 +1219,16 @@ static u32 fsl_mpic_get_version(struct mpic *mpic) | |||
1219 | * Exported functions | 1219 | * Exported functions |
1220 | */ | 1220 | */ |
1221 | 1221 | ||
1222 | u32 fsl_mpic_primary_get_version(void) | ||
1223 | { | ||
1224 | struct mpic *mpic = mpic_primary; | ||
1225 | |||
1226 | if (mpic) | ||
1227 | return fsl_mpic_get_version(mpic); | ||
1228 | |||
1229 | return 0; | ||
1230 | } | ||
1231 | |||
1222 | struct mpic * __init mpic_alloc(struct device_node *node, | 1232 | struct mpic * __init mpic_alloc(struct device_node *node, |
1223 | phys_addr_t phys_addr, | 1233 | phys_addr_t phys_addr, |
1224 | unsigned int flags, | 1234 | unsigned int flags, |