diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-11-12 18:09:47 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:22 -0500 |
commit | c962f7b95c98d2b42019cc9cb074886d177ee3a3 (patch) | |
tree | 9dc80640a8c6bb7434099d6178a6d73b4d9770a6 | |
parent | 9b3521ee8f35faa73459cda9a8b9b6e0a08a8d30 (diff) |
drivers/video/backlight/hx8357.c: remove redundant of_match_ptr
'hx8357_dt_ids' is always compiled in. Hence of_match_ptr is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/video/backlight/hx8357.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/hx8357.c b/drivers/video/backlight/hx8357.c index 0d252e720d13..985e854e244b 100644 --- a/drivers/video/backlight/hx8357.c +++ b/drivers/video/backlight/hx8357.c | |||
@@ -673,7 +673,7 @@ static struct spi_driver hx8357_driver = { | |||
673 | .probe = hx8357_probe, | 673 | .probe = hx8357_probe, |
674 | .driver = { | 674 | .driver = { |
675 | .name = "hx8357", | 675 | .name = "hx8357", |
676 | .of_match_table = of_match_ptr(hx8357_dt_ids), | 676 | .of_match_table = hx8357_dt_ids, |
677 | }, | 677 | }, |
678 | }; | 678 | }; |
679 | 679 | ||