Commit f4d4661b authored by Tobias Klauser's avatar Tobias Klauser Committed by Dmitry Torokhov

Input: samsung-keypad - use of_match_ptr()

Instead of having to define the match table to NULL if CONFIG_OF isn't
set, use the of_match_ptr() macro which will do this for us.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 54ce165e
...@@ -662,8 +662,6 @@ static const struct of_device_id samsung_keypad_dt_match[] = { ...@@ -662,8 +662,6 @@ static const struct of_device_id samsung_keypad_dt_match[] = {
{}, {},
}; };
MODULE_DEVICE_TABLE(of, samsung_keypad_dt_match); MODULE_DEVICE_TABLE(of, samsung_keypad_dt_match);
#else
#define samsung_keypad_dt_match NULL
#endif #endif
static struct platform_device_id samsung_keypad_driver_ids[] = { static struct platform_device_id samsung_keypad_driver_ids[] = {
...@@ -684,7 +682,7 @@ static struct platform_driver samsung_keypad_driver = { ...@@ -684,7 +682,7 @@ static struct platform_driver samsung_keypad_driver = {
.driver = { .driver = {
.name = "samsung-keypad", .name = "samsung-keypad",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.of_match_table = samsung_keypad_dt_match, .of_match_table = of_match_ptr(samsung_keypad_dt_match),
.pm = &samsung_keypad_pm_ops, .pm = &samsung_keypad_pm_ops,
}, },
.id_table = samsung_keypad_driver_ids, .id_table = samsung_keypad_driver_ids,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment