Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

of_serial: remove driver_data direct access of struct device

In the near future, the driver core is going to not allow direct access
to the driver_data pointer in struct device. Instead, the functions
dev_get_drvdata() and dev_set_drvdata() should be used. These functions
have been around since the beginning, so are backwards compatible with
all older kernel versions.

Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Matthias Fuchs <mfuchs@ma-fu.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

+2 -2
+2 -2
drivers/serial/of_serial.c
··· 122 122 123 123 info->type = port_type; 124 124 info->line = ret; 125 - ofdev->dev.driver_data = info; 125 + dev_set_drvdata(&ofdev->dev, info); 126 126 return 0; 127 127 out: 128 128 kfree(info); ··· 135 135 */ 136 136 static int of_platform_serial_remove(struct of_device *ofdev) 137 137 { 138 - struct of_serial_info *info = ofdev->dev.driver_data; 138 + struct of_serial_info *info = dev_get_drvdata(&ofdev->dev); 139 139 switch (info->type) { 140 140 #ifdef CONFIG_SERIAL_8250 141 141 case PORT_8250 ... PORT_MAX_8250: