diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-06-27 18:56:54 -0400 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2008-07-16 17:27:05 -0400 |
commit | 940e98dbc616f1df7b63b73858a966969baf261d (patch) | |
tree | 23d8a266017d983abbb2737e6f674e69104d16ab /drivers/pnp/resource.c | |
parent | 87e4acf3ebc02c9d0a2f7a37b655c49176c4d765 (diff) |
PNP: add pnp_resource_type() internal interface
Given a struct resource, this returns the type (IO, MEM, IRQ, DMA).
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Diffstat (limited to 'drivers/pnp/resource.c')
-rw-r--r-- | drivers/pnp/resource.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/pnp/resource.c b/drivers/pnp/resource.c index 390b50096e30..cce341f743d4 100644 --- a/drivers/pnp/resource.c +++ b/drivers/pnp/resource.c | |||
@@ -499,6 +499,12 @@ int pnp_check_dma(struct pnp_dev *dev, struct resource *res) | |||
499 | #endif | 499 | #endif |
500 | } | 500 | } |
501 | 501 | ||
502 | int pnp_resource_type(struct resource *res) | ||
503 | { | ||
504 | return res->flags & (IORESOURCE_IO | IORESOURCE_MEM | | ||
505 | IORESOURCE_IRQ | IORESOURCE_DMA); | ||
506 | } | ||
507 | |||
502 | struct pnp_resource *pnp_get_pnp_resource(struct pnp_dev *dev, | 508 | struct pnp_resource *pnp_get_pnp_resource(struct pnp_dev *dev, |
503 | unsigned int type, unsigned int num) | 509 | unsigned int type, unsigned int num) |
504 | { | 510 | { |