diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pnp/pnpbios/rsparser.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pnp/pnpbios/rsparser.c b/drivers/pnp/pnpbios/rsparser.c index 618ac15a9e90..79bce7b75740 100644 --- a/drivers/pnp/pnpbios/rsparser.c +++ b/drivers/pnp/pnpbios/rsparser.c | |||
@@ -72,7 +72,9 @@ static void | |||
72 | pnpbios_parse_allocated_dmaresource(struct pnp_resource_table * res, int dma) | 72 | pnpbios_parse_allocated_dmaresource(struct pnp_resource_table * res, int dma) |
73 | { | 73 | { |
74 | int i = 0; | 74 | int i = 0; |
75 | while (!(res->dma_resource[i].flags & IORESOURCE_UNSET) && i < PNP_MAX_DMA) i++; | 75 | while (i < PNP_MAX_DMA && |
76 | !(res->dma_resource[i].flags & IORESOURCE_UNSET)) | ||
77 | i++; | ||
76 | if (i < PNP_MAX_DMA) { | 78 | if (i < PNP_MAX_DMA) { |
77 | res->dma_resource[i].flags = IORESOURCE_DMA; // Also clears _UNSET flag | 79 | res->dma_resource[i].flags = IORESOURCE_DMA; // Also clears _UNSET flag |
78 | if (dma == -1) { | 80 | if (dma == -1) { |