This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / pnp / isapnp / core.c
index 9df2b43..bf52990 100644 (file)
@@ -477,14 +477,12 @@ static void __init isapnp_parse_irq_resource(struct pnp_option *option,
 {
        unsigned char tmp[3];
        struct pnp_irq *irq;
-       unsigned long bits;
 
        isapnp_peek(tmp, size);
        irq = isapnp_alloc(sizeof(struct pnp_irq));
        if (!irq)
                return;
-       bits = (tmp[1] << 8) | tmp[0];
-       bitmap_copy(irq->map, &bits, 16);
+       irq->map = (tmp[1] << 8) | tmp[0];
        if (size > 2)
                irq->flags = tmp[2];
        else