From: Jingoo Han Date: Thu, 1 Aug 2013 09:17:45 +0000 (+0900) Subject: serial: sh-sci: use dev_get_platdata() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3ba35baa55fa4420f9ea7132d728ed68cfa37d28;p=deliverable%2Flinux.git serial: sh-sci: use dev_get_platdata() Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly Signed-off-by: Jingoo Han Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index 72ca870f8e57..537750261aaa 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c @@ -2469,7 +2469,7 @@ static int sci_probe_single(struct platform_device *dev, static int sci_probe(struct platform_device *dev) { - struct plat_sci_port *p = dev->dev.platform_data; + struct plat_sci_port *p = dev_get_platdata(&dev->dev); struct sci_port *sp = &sci_ports[dev->id]; int ret;