From: Arthur Othieno Date: Thu, 19 Jan 2006 02:12:57 +0000 (-0500) Subject: [PATCH] PCI: cyblafb: remove pci_module_init() return, really. X-Git-Tag: v2.6.16-rc2~176^2~1 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=877be3f0304de16a77f11b2b47f1291b800d5479;hp=8737d6a90cd8b085c2ea9cb4c7443c87f86c3429;p=linux-2.6 [PATCH] PCI: cyblafb: remove pci_module_init() return, really. Richard Knutsson did the original pci_module_init() cleanups: http://marc.theaimsgroup.com/?l=linux-kernel&m=113330872125068&w=2 http://marc.theaimsgroup.com/?l=linux-kernel&m=113330888507321&w=2 Greg, on it's way upstream, pci_module_init() return sneaked back in for cyblafb? http://marc.theaimsgroup.com/?l=linux-pci&m=113652969209562&w=2 http://marc.theaimsgroup.com/?l=linux-pci&m=113683930220421&w=2 Remove for good. Signed-off-by: Arthur Othieno Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/video/cyblafb.c b/drivers/video/cyblafb.c index 2b972461a0..0ae0a97b0f 100644 --- a/drivers/video/cyblafb.c +++ b/drivers/video/cyblafb.c @@ -1665,7 +1665,6 @@ static int __devinit cyblafb_init(void) } #endif output("CyblaFB version %s initializing\n", VERSION); - return pci_module_init(&cyblafb_pci_driver); return pci_register_driver(&cyblafb_pci_driver); }