aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pnp/resource.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2008-06-27 18:56:54 -0400
committerAndi Kleen <andi@basil.nowhere.org>2008-07-16 17:27:05 -0400
commit940e98dbc616f1df7b63b73858a966969baf261d (patch)
tree23d8a266017d983abbb2737e6f674e69104d16ab /drivers/pnp/resource.c
parent87e4acf3ebc02c9d0a2f7a37b655c49176c4d765 (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.c6
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
502int pnp_resource_type(struct resource *res)
503{
504 return res->flags & (IORESOURCE_IO | IORESOURCE_MEM |
505 IORESOURCE_IRQ | IORESOURCE_DMA);
506}
507
502struct pnp_resource *pnp_get_pnp_resource(struct pnp_dev *dev, 508struct 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{