diff options
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 | { |