]> err.no Git - linux-2.6/blobdiff - drivers/video/stifb.c
[S390] xpram off by one error.
[linux-2.6] / drivers / video / stifb.c
index 8d5f35676f9a5d003fe625ff25c0216ad9fcffb1..3e16e2d9d55dd50a39187b9d332e41b67b4723e1 100644 (file)
@@ -54,7 +54,6 @@
 #undef DEBUG_STIFB_REGS                /* debug sti register accesses */
 
 
-#include <linux/config.h>
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/errno.h>
@@ -1378,7 +1377,7 @@ stifb_setup(char *options)
        int i;
        
        if (!options || !*options)
-               return 0;
+               return 1;
        
        if (strncmp(options, "off", 3) == 0) {
                stifb_disabled = 1;
@@ -1393,7 +1392,7 @@ stifb_setup(char *options)
                        stifb_bpp_pref[i] = simple_strtoul(options, &options, 10);
                }
        }
-       return 0;
+       return 1;
 }
 
 __setup("stifb=", stifb_setup);