Rui, On 16-05-2013 06:28, Sachin Kamat wrote: > 'spear_thermal_id_table' is always compiled in and the driver > is dependent on OF. Hence use of of_match_ptr is unnecessary. > > Signed-off-by: Sachin Kamat > Cc: Vincenzo Frascino > Cc: Viresh Kumar Acked-by: Eduardo Valentin > --- > drivers/thermal/spear_thermal.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/thermal/spear_thermal.c b/drivers/thermal/spear_thermal.c > index 1a14eaa..dcb5f6f 100644 > --- a/drivers/thermal/spear_thermal.c > +++ b/drivers/thermal/spear_thermal.c > @@ -197,7 +197,7 @@ static struct platform_driver spear_thermal_driver = { > .name = "spear_thermal", > .owner = THIS_MODULE, > .pm = &spear_thermal_pm_ops, > - .of_match_table = of_match_ptr(spear_thermal_id_table), > + .of_match_table = spear_thermal_id_table, > }, > }; > >