Dimitromanolakis Apostolos <[EMAIL PROTECTED]> écrit :
[...]
> Your patch had some problem in the maxiradio_radio_init function as
> pci_register_driver returns the number of devices found and not 0 when
> succesful. I fixed it and here is my patch against the original driver.
Patch-o-the-month candidate follows:
--- linux-2.4.1-ac8.orig/drivers/media/radio/radio-maxiradio.c Fri Feb 9 15:55:03
2001
+++ linux-2.4.1-ac8/drivers/media/radio/radio-maxiradio.c Fri Feb 9 15:56:55
+2001
@@ -376,9 +376,7 @@
int __init maxiradio_radio_init(void)
{
- int count = pci_register_driver(&maxiradio_driver);
-
- if(count > 0) return 0; else return -ENODEV;
+ return pci_module_init(&maxiradio_driver);
}
void __exit maxiradio_radio_exit(void)
--
Ueimor
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/