Message ID | 1382702373-19573-1-git-send-email-sachin.kamat@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Sachin, On Fri, Oct 25, 2013 at 05:29:33PM +0530, Sachin Kamat wrote: > 'hx8357_dt_ids' is always compiled in. Hence of_match_ptr is > not needed. > > Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> > Cc: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Thanks, Maxime
On Sunday, October 27, 2013 11:22 PM, Maxime Ripard wrote: > On Fri, Oct 25, 2013 at 05:29:33PM +0530, Sachin Kamat wrote: > > 'hx8357_dt_ids' is always compiled in. Hence of_match_ptr is > > not needed. > > > > Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> > > Cc: Maxime Ripard <maxime.ripard@free-electrons.com> > > Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Jingoo Han <jg1.han@samsung.com> Best regards, Jingoo Han -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/video/backlight/hx8357.c b/drivers/video/backlight/hx8357.c index c7af8c4..5a4dd33 100644 --- a/drivers/video/backlight/hx8357.c +++ b/drivers/video/backlight/hx8357.c @@ -685,7 +685,7 @@ static struct spi_driver hx8357_driver = { .remove = hx8357_remove, .driver = { .name = "hx8357", - .of_match_table = of_match_ptr(hx8357_dt_ids), + .of_match_table = hx8357_dt_ids, }, };
'hx8357_dt_ids' is always compiled in. Hence of_match_ptr is not needed. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Maxime Ripard <maxime.ripard@free-electrons.com> --- drivers/video/backlight/hx8357.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)