diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-30 04:45:31 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-10-09 05:35:44 -0400 |
commit | d71f8cdfdb745084bba33d73c476fb0008c8053c (patch) | |
tree | 0f211289b9026e1734ea9bdf024888412d14cef8 /drivers/video/ssd1307fb.c | |
parent | c5136a033fbbb4c452fcc7fcfe6c912cda03c762 (diff) |
video: ssd1307fb: Remove redundant of_match_ptr
The data structure of_match_ptr() protects 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>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/ssd1307fb.c')
-rw-r--r-- | drivers/video/ssd1307fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/ssd1307fb.c b/drivers/video/ssd1307fb.c index 44967c8fef2b..f4daa59f0a80 100644 --- a/drivers/video/ssd1307fb.c +++ b/drivers/video/ssd1307fb.c | |||
@@ -569,7 +569,7 @@ static struct i2c_driver ssd1307fb_driver = { | |||
569 | .id_table = ssd1307fb_i2c_id, | 569 | .id_table = ssd1307fb_i2c_id, |
570 | .driver = { | 570 | .driver = { |
571 | .name = "ssd1307fb", | 571 | .name = "ssd1307fb", |
572 | .of_match_table = of_match_ptr(ssd1307fb_of_match), | 572 | .of_match_table = ssd1307fb_of_match, |
573 | .owner = THIS_MODULE, | 573 | .owner = THIS_MODULE, |
574 | }, | 574 | }, |
575 | }; | 575 | }; |