diff options
Diffstat (limited to 'arch/powerpc/include/asm/mpic.h')
-rw-r--r-- | arch/powerpc/include/asm/mpic.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/include/asm/mpic.h b/arch/powerpc/include/asm/mpic.h index 7005ee0b074d..df18989e78d4 100644 --- a/arch/powerpc/include/asm/mpic.h +++ b/arch/powerpc/include/asm/mpic.h | |||
@@ -3,7 +3,6 @@ | |||
3 | #ifdef __KERNEL__ | 3 | #ifdef __KERNEL__ |
4 | 4 | ||
5 | #include <linux/irq.h> | 5 | #include <linux/irq.h> |
6 | #include <linux/sysdev.h> | ||
7 | #include <asm/dcr.h> | 6 | #include <asm/dcr.h> |
8 | #include <asm/msi_bitmap.h> | 7 | #include <asm/msi_bitmap.h> |
9 | 8 | ||
@@ -263,6 +262,7 @@ struct mpic | |||
263 | #ifdef CONFIG_SMP | 262 | #ifdef CONFIG_SMP |
264 | struct irq_chip hc_ipi; | 263 | struct irq_chip hc_ipi; |
265 | #endif | 264 | #endif |
265 | struct irq_chip hc_tm; | ||
266 | const char *name; | 266 | const char *name; |
267 | /* Flags */ | 267 | /* Flags */ |
268 | unsigned int flags; | 268 | unsigned int flags; |
@@ -281,7 +281,7 @@ struct mpic | |||
281 | 281 | ||
282 | /* vector numbers used for internal sources (ipi/timers) */ | 282 | /* vector numbers used for internal sources (ipi/timers) */ |
283 | unsigned int ipi_vecs[4]; | 283 | unsigned int ipi_vecs[4]; |
284 | unsigned int timer_vecs[4]; | 284 | unsigned int timer_vecs[8]; |
285 | 285 | ||
286 | /* Spurious vector to program into unused sources */ | 286 | /* Spurious vector to program into unused sources */ |
287 | unsigned int spurious_vec; | 287 | unsigned int spurious_vec; |
@@ -320,8 +320,6 @@ struct mpic | |||
320 | /* link */ | 320 | /* link */ |
321 | struct mpic *next; | 321 | struct mpic *next; |
322 | 322 | ||
323 | struct sys_device sysdev; | ||
324 | |||
325 | #ifdef CONFIG_PM | 323 | #ifdef CONFIG_PM |
326 | struct mpic_irq_save *save_data; | 324 | struct mpic_irq_save *save_data; |
327 | #endif | 325 | #endif |
@@ -371,6 +369,8 @@ struct mpic | |||
371 | * NOTE: This flag trumps MPIC_WANTS_RESET. | 369 | * NOTE: This flag trumps MPIC_WANTS_RESET. |
372 | */ | 370 | */ |
373 | #define MPIC_NO_RESET 0x00004000 | 371 | #define MPIC_NO_RESET 0x00004000 |
372 | /* Freescale MPIC (compatible includes "fsl,mpic") */ | ||
373 | #define MPIC_FSL 0x00008000 | ||
374 | 374 | ||
375 | /* MPIC HW modification ID */ | 375 | /* MPIC HW modification ID */ |
376 | #define MPIC_REGSET_MASK 0xf0000000 | 376 | #define MPIC_REGSET_MASK 0xf0000000 |