aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-22 07:36:29 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-03 13:21:33 -0400
commit86c346de5db0b82087d88ec04d0a404d293c420d (patch)
tree17e25a41785030626f3f5c5ae42651f94b627741 /drivers/tty
parent8095e4e81b4bc38eef7e0be99f9ecc744eaa1683 (diff)
serial: vt8500: Remove redundant use of of_match_ptr macro
'wmt_dt_ids' is always compiled in. Hence of_match_ptr is not necessary. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/vt8500_serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/vt8500_serial.c b/drivers/tty/serial/vt8500_serial.c
index 1a8bc2275ea4..48af43de3467 100644
--- a/drivers/tty/serial/vt8500_serial.c
+++ b/drivers/tty/serial/vt8500_serial.c
@@ -648,7 +648,7 @@ static struct platform_driver vt8500_platform_driver = {
648 .driver = { 648 .driver = {
649 .name = "vt8500_serial", 649 .name = "vt8500_serial",
650 .owner = THIS_MODULE, 650 .owner = THIS_MODULE,
651 .of_match_table = of_match_ptr(wmt_dt_ids), 651 .of_match_table = wmt_dt_ids,
652 }, 652 },
653}; 653};
654 654