diff options
Diffstat (limited to 'drivers/pnp/support.c')
-rw-r--r-- | drivers/pnp/support.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/pnp/support.c b/drivers/pnp/support.c index 7f594ccf4958..eb07345f5cf7 100644 --- a/drivers/pnp/support.c +++ b/drivers/pnp/support.c | |||
@@ -52,6 +52,21 @@ void pnp_eisa_id_to_string(u32 id, char *str) | |||
52 | str[7] = '\0'; | 52 | str[7] = '\0'; |
53 | } | 53 | } |
54 | 54 | ||
55 | char *pnp_resource_type_name(struct resource *res) | ||
56 | { | ||
57 | switch (pnp_resource_type(res)) { | ||
58 | case IORESOURCE_IO: | ||
59 | return "io"; | ||
60 | case IORESOURCE_MEM: | ||
61 | return "mem"; | ||
62 | case IORESOURCE_IRQ: | ||
63 | return "irq"; | ||
64 | case IORESOURCE_DMA: | ||
65 | return "dma"; | ||
66 | } | ||
67 | return NULL; | ||
68 | } | ||
69 | |||
55 | void dbg_pnp_show_resources(struct pnp_dev *dev, char *desc) | 70 | void dbg_pnp_show_resources(struct pnp_dev *dev, char *desc) |
56 | { | 71 | { |
57 | #ifdef DEBUG | 72 | #ifdef DEBUG |