diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-06-27 18:57:05 -0400 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2008-07-16 17:27:06 -0400 |
commit | 7aefff51854ccd33599c40b4e360d94cb2b7622f (patch) | |
tree | 10cc269be1f9b581028dd6540a6e15a1b9d02e9a /drivers/pnp/base.h | |
parent | a1802c42950403657d07e64558eff612d550ce16 (diff) |
PNP: introduce pnp_irq_mask_t typedef
This adds a typedef for the IRQ bitmap, which should cause
no functional change, but will make it easier to pass a
pointer to a bitmap to pnp_register_irq_resource().
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Rene Herman <rene.herman@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/pnp/base.h')
-rw-r--r-- | drivers/pnp/base.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pnp/base.h b/drivers/pnp/base.h index 3126e4582008..a9ee0a9fec77 100644 --- a/drivers/pnp/base.h +++ b/drivers/pnp/base.h | |||
@@ -30,8 +30,10 @@ struct pnp_port { | |||
30 | }; | 30 | }; |
31 | 31 | ||
32 | #define PNP_IRQ_NR 256 | 32 | #define PNP_IRQ_NR 256 |
33 | typedef struct { DECLARE_BITMAP(bits, PNP_IRQ_NR); } pnp_irq_mask_t; | ||
34 | |||
33 | struct pnp_irq { | 35 | struct pnp_irq { |
34 | DECLARE_BITMAP(map, PNP_IRQ_NR); /* bitmask for IRQ lines */ | 36 | pnp_irq_mask_t map; /* bitmap for IRQ lines */ |
35 | unsigned char flags; /* IRQ flags */ | 37 | unsigned char flags; /* IRQ flags */ |
36 | unsigned char pad; /* pad */ | 38 | unsigned char pad; /* pad */ |
37 | struct pnp_irq *next; /* next IRQ */ | 39 | struct pnp_irq *next; /* next IRQ */ |