[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>

authored by Ben Dooks and committed by Russell King 7dead80c cdfc8f50

+3
+3
drivers/serial/s3c2410.c
··· 1235 1236 static struct device_driver s3c2400_serial_drv = { 1237 .name = "s3c2400-uart", 1238 .bus = &platform_bus_type, 1239 .probe = s3c2400_serial_probe, 1240 .remove = s3c24xx_serial_remove, ··· 1339 1340 static struct device_driver s3c2410_serial_drv = { 1341 .name = "s3c2410-uart", 1342 .bus = &platform_bus_type, 1343 .probe = s3c2410_serial_probe, 1344 .remove = s3c24xx_serial_remove, ··· 1501 1502 static struct device_driver s3c2440_serial_drv = { 1503 .name = "s3c2440-uart", 1504 .bus = &platform_bus_type, 1505 .probe = s3c2440_serial_probe, 1506 .remove = s3c24xx_serial_remove,
··· 1235 1236 static struct device_driver s3c2400_serial_drv = { 1237 .name = "s3c2400-uart", 1238 + .owner = THIS_MODULE, 1239 .bus = &platform_bus_type, 1240 .probe = s3c2400_serial_probe, 1241 .remove = s3c24xx_serial_remove, ··· 1338 1339 static struct device_driver s3c2410_serial_drv = { 1340 .name = "s3c2410-uart", 1341 + .owner = THIS_MODULE, 1342 .bus = &platform_bus_type, 1343 .probe = s3c2410_serial_probe, 1344 .remove = s3c24xx_serial_remove, ··· 1499 1500 static struct device_driver s3c2440_serial_drv = { 1501 .name = "s3c2440-uart", 1502 + .owner = THIS_MODULE, 1503 .bus = &platform_bus_type, 1504 .probe = s3c2440_serial_probe, 1505 .remove = s3c24xx_serial_remove,