From ed40082da0a0bfbcab979952d1b6d122cb5fb67b Mon Sep 17 00:00:00 2001 From: Sachin Kamat Date: Sat, 21 Dec 2013 15:20:07 +0530 Subject: [PATCH] usb: phy-keystone: Remove redundant of_match_ptr helper 'keystone_usbphy_ids' is always compiled in. Hence the helper macro is not needed. Signed-off-by: Sachin Kamat Cc: WingMan Kwok Signed-off-by: Felipe Balbi --- drivers/usb/phy/phy-keystone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/phy/phy-keystone.c b/drivers/usb/phy/phy-keystone.c index 533db12..ee1d03b 100644 --- a/drivers/usb/phy/phy-keystone.c +++ b/drivers/usb/phy/phy-keystone.c @@ -129,7 +129,7 @@ static struct platform_driver keystone_usbphy_driver = { .driver = { .name = "keystone-usbphy", .owner = THIS_MODULE, - .of_match_table = of_match_ptr(keystone_usbphy_ids), + .of_match_table = keystone_usbphy_ids, }, }; -- 2.7.4