diff options
author | Ben Dooks <ben-linux@fluff.org> | 2005-10-10 10:20:07 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-10-10 10:20:07 +0100 |
commit | 7dead80cbee3259e3a9f25bfc65c8dc769a19e0e (patch) | |
tree | 7994d817862561babeb901eea46604b282f12c21 /drivers/serial/s3c2410.c | |
parent | cdfc8f5079fdd18f6cb8097aa4235704d1155ec5 (diff) | |
download | kernel_samsung_aries-7dead80cbee3259e3a9f25bfc65c8dc769a19e0e.zip kernel_samsung_aries-7dead80cbee3259e3a9f25bfc65c8dc769a19e0e.tar.gz kernel_samsung_aries-7dead80cbee3259e3a9f25bfc65c8dc769a19e0e.tar.bz2 |
[ARM] 2964/1: S3C2410 - serial: add .owner to driver
Patch from Ben Dooks
Initialise the driver's .owner field so that
the device driver can be referenced to the
module that owns it
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/serial/s3c2410.c')
-rw-r--r-- | drivers/serial/s3c2410.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/serial/s3c2410.c b/drivers/serial/s3c2410.c index 50d7870..eff2158 100644 --- a/drivers/serial/s3c2410.c +++ b/drivers/serial/s3c2410.c @@ -1235,6 +1235,7 @@ static int s3c2400_serial_probe(struct device *dev) static struct device_driver s3c2400_serial_drv = { .name = "s3c2400-uart", + .owner = THIS_MODULE, .bus = &platform_bus_type, .probe = s3c2400_serial_probe, .remove = s3c24xx_serial_remove, @@ -1338,6 +1339,7 @@ static int s3c2410_serial_probe(struct device *dev) static struct device_driver s3c2410_serial_drv = { .name = "s3c2410-uart", + .owner = THIS_MODULE, .bus = &platform_bus_type, .probe = s3c2410_serial_probe, .remove = s3c24xx_serial_remove, @@ -1499,6 +1501,7 @@ static int s3c2440_serial_probe(struct device *dev) static struct device_driver s3c2440_serial_drv = { .name = "s3c2440-uart", + .owner = THIS_MODULE, .bus = &platform_bus_type, .probe = s3c2440_serial_probe, .remove = s3c24xx_serial_remove, |