1
0
Fork 0

[PATCH] atyfb: Honor the return value of pci_register_driver

Check return value of pci_register_driver().

Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
wifi-calibration
Antonino A. Daplas 2006-10-03 01:14:51 -07:00 committed by Linus Torvalds
parent 0a727dea77
commit c1cc53be0f
1 changed files with 5 additions and 3 deletions

View File

@ -3863,6 +3863,7 @@ static int __devinit atyfb_setup(char *options)
static int __devinit atyfb_init(void)
{
int err1 = 1, err2 = 1;
#ifndef MODULE
char *option = NULL;
@ -3872,12 +3873,13 @@ static int __devinit atyfb_init(void)
#endif
#ifdef CONFIG_PCI
pci_register_driver(&atyfb_driver);
err1 = pci_register_driver(&atyfb_driver);
#endif
#ifdef CONFIG_ATARI
atyfb_atari_probe();
err2 = atyfb_atari_probe();
#endif
return 0;
return (err1 && err2) ? -ENODEV : 0;
}
static void __exit atyfb_exit(void)