From: Ben Dooks Date: Mon, 10 Oct 2005 00:23:50 +0000 (+0100) Subject: [PATCH] USB: S3C2410 OHCI - add driver owner field X-Git-Tag: v2.6.15-rc1~731^2~16^2~1^2~41 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=a85ee6b50c8a1fca4034c8d6b21c91a8de171e01;p=linux-2.6-omap-h63xx.git [PATCH] USB: S3C2410 OHCI - add driver owner field Initialise the .owner field of the driver with the module that owns it, to aid in linking drivers to modules. Signed-off-by: Ben Dooks Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c index 3225d455f45..fab420a2ce7 100644 --- a/drivers/usb/host/ohci-s3c2410.c +++ b/drivers/usb/host/ohci-s3c2410.c @@ -474,6 +474,7 @@ static int ohci_hcd_s3c2410_drv_remove(struct device *dev) static struct device_driver ohci_hcd_s3c2410_driver = { .name = "s3c2410-ohci", + .owner = THIS_MODULE, .bus = &platform_bus_type, .probe = ohci_hcd_s3c2410_drv_probe, .remove = ohci_hcd_s3c2410_drv_remove,