summaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-09 14:06:45 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-26 14:29:58 -0700
commit0d8570ad7ec99f4c89135657ea2821bdae78423f (patch)
tree347518ceb237104e4d60de9d8bd0cf3fc4849d52 /drivers/tty
parent7fb8c56c7fa0fa11168d3788d4591951bec27f4b (diff)
downloadtalos-op-linux-0d8570ad7ec99f4c89135657ea2821bdae78423f.tar.gz
talos-op-linux-0d8570ad7ec99f4c89135657ea2821bdae78423f.zip
serial: arc_uart: Remove casting the return value which is a void pointer
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Vineet Gupta <vgupta@synopsys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/arc_uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/arc_uart.c b/drivers/tty/serial/arc_uart.c
index 569872f4c9b8..c9f5c9dcc15c 100644
--- a/drivers/tty/serial/arc_uart.c
+++ b/drivers/tty/serial/arc_uart.c
@@ -533,7 +533,7 @@ arc_uart_init_one(struct platform_device *pdev, int dev_id)
unsigned long *plat_data;
struct arc_uart_port *uart = &arc_uart_ports[dev_id];
- plat_data = (unsigned long *)dev_get_platdata(&pdev->dev);
+ plat_data = dev_get_platdata(&pdev->dev);
if (!plat_data)
return -ENODEV;
OpenPOWER on IntegriCloud