pcmcia: fix ioport size calculation in rsrc_nonstatic
authorDominik Brodowski <linux@dominikbrodowski.net>
Thu, 15 Apr 2010 17:01:53 +0000 (19:01 +0200)
committerDominik Brodowski <linux@dominikbrodowski.net>
Thu, 15 Apr 2010 17:01:53 +0000 (19:01 +0200)
Size needs to be calculated after manipulating with the start value.

Reported-by: Komuro <komurojun-mbn@nifty.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
drivers/pcmcia/rsrc_nonstatic.c

index 1178a82..a6eb7b5 100644 (file)
@@ -810,7 +810,7 @@ static int adjust_memory(struct pcmcia_socket *s, unsigned int action, unsigned
 static int adjust_io(struct pcmcia_socket *s, unsigned int action, unsigned long start, unsigned long end)
 {
        struct socket_data *data = s->resource_data;
-       unsigned long size = end - start + 1;
+       unsigned long size;
        int ret = 0;
 
 #if defined(CONFIG_X86)
@@ -820,6 +820,8 @@ static int adjust_io(struct pcmcia_socket *s, unsigned int action, unsigned long
                start = 0x100;
 #endif
 
+       size = end - start + 1;
+
        if (end < start)
                return -EINVAL;