This patch fixes a compilation warning in today linux-next
removing some compilation conditionals.
Signed-off-by: Javier Martinez Canillas <martinez.javier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
 
 }
 
-#ifndef MODULE
 XGIINITSTATIC int __init XGIfb_setup(char *options)
 {
        char *this_opt;
        printk("\nxgifb: outa xgifb_setup 3450");
        return 0;
 }
-#endif
 
 static unsigned char VBIOS_BUF[65535];
 
 
 XGIINITSTATIC int __init xgifb_init(void)
 {
-#ifndef MODULE
        char *option = NULL;
 
        if (fb_get_options("xgifb", &option))
                return -ENODEV;
        XGIfb_setup(option);
-#endif
+
        return pci_register_driver(&xgifb_driver);
 }