avr32: off by one in at32_init_pio()
[linux-2.6-block.git] / arch / avr32 / mach-at32ap / pio.c
index 83c2a0021b5627e909adf74b54214846327c43f2..13d3fc4270b7b4ab2f3bea5fb352b65f4e6e09db 100644 (file)
@@ -435,7 +435,7 @@ void __init at32_init_pio(struct platform_device *pdev)
        struct resource *regs;
        struct pio_device *pio;
 
-       if (pdev->id > MAX_NR_PIO_DEVICES) {
+       if (pdev->id >= MAX_NR_PIO_DEVICES) {
                dev_err(&pdev->dev, "only %d PIO devices supported\n",
                        MAX_NR_PIO_DEVICES);
                return;