]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
[PATCH] ieee1394: ohci1394: fix initialization if built non-modular
authorStefan Richter <stefanr@s5r6.in-berlin.de>
Fri, 21 Sep 2007 06:11:08 +0000 (08:11 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 17 Oct 2007 19:30:34 +0000 (21:30 +0200)
Initialization of ohci1394 was broken according to one reporter if the
driver was statically linked, i.e. not built as loadable module.  Dmesg:

  PCI: Device 0000:02:07.0 not available because of resource collisions
  ohci1394: Failed to enable OHCI hardware.

This was reported for a Toshiba Satellite 5100-503.  The cause is commit
8df4083c5291b3647e0381d3c69ab2196f5dd3b7 in Linux 2.6.19-rc1 which only
served purposes of early remote debugging via FireWire.  This
functionality is better provided by the currently out-of-tree driver
ohci1394_earlyinit.  Reversal of the commit was OK'd by Andi Kleen.

Same as pre-2.6.23 commit be7963b7e7f08a149e247c0bf29a4abd174e0929.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/ieee1394/ieee1394_core.c
drivers/ieee1394/ohci1394.c

index 9a48ca20d1fd0dfdc788a6c78f465340f378b601..3fc389552ae05545f7d7091fe2a0a6753f460f58 100644 (file)
@@ -1170,7 +1170,7 @@ static void __exit ieee1394_cleanup(void)
        unregister_chrdev_region(IEEE1394_CORE_DEV, 256);
 }
 
-fs_initcall(ieee1394_init); /* same as ohci1394 */
+module_init(ieee1394_init);
 module_exit(ieee1394_cleanup);
 
 /* Exported symbols */
index 628130a58af3fe9205750bdf4b68eb225815fbaa..ec301a8d8c0b5569a7f07dff7caab33da0131fe0 100644 (file)
@@ -3785,7 +3785,5 @@ static int __init ohci1394_init(void)
        return pci_register_driver(&ohci1394_pci_driver);
 }
 
-/* Register before most other device drivers.
- * Useful for remote debugging via physical DMA, e.g. using firescope. */
-fs_initcall(ohci1394_init);
+module_init(ohci1394_init);
 module_exit(ohci1394_cleanup);