Re: [PATCH] Driver Core patches for 2.6.9

From: Greg KH
Date: Fri Oct 22 2004 - 01:26:46 EST


ChangeSet 1.1939.1.48, 2004/09/22 16:12:59-07:00, greg@xxxxxxxxx

[PATCH] USB: add support for symlink from usb and usb-serial driver to its module in sysfs

Signed-off-by: Greg Kroah-Hartman <greg@xxxxxxxxx>


drivers/usb/core/usb.c | 2 ++
drivers/usb/serial/bus.c | 1 +
2 files changed, 3 insertions(+)


diff -Nru a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
--- a/drivers/usb/core/usb.c 2004-10-19 09:22:24 -07:00
+++ b/drivers/usb/core/usb.c 2004-10-19 09:22:24 -07:00
@@ -73,6 +73,7 @@
}

static struct device_driver usb_generic_driver = {
+ .owner = THIS_MODULE,
.name = "usb",
.bus = &usb_bus_type,
.probe = generic_probe,
@@ -150,6 +151,7 @@
new_driver->driver.bus = &usb_bus_type;
new_driver->driver.probe = usb_probe_interface;
new_driver->driver.remove = usb_unbind_interface;
+ new_driver->driver.owner = new_driver->owner;

retval = driver_register(&new_driver->driver);

diff -Nru a/drivers/usb/serial/bus.c b/drivers/usb/serial/bus.c
--- a/drivers/usb/serial/bus.c 2004-10-19 09:22:24 -07:00
+++ b/drivers/usb/serial/bus.c 2004-10-19 09:22:24 -07:00
@@ -120,6 +120,7 @@
device->driver.bus = &usb_serial_bus_type;
device->driver.probe = usb_serial_device_probe;
device->driver.remove = usb_serial_device_remove;
+ device->driver.owner = device->owner;

retval = driver_register(&device->driver);


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/