media: hi846: remove the of_match_ptr macro
Similar to other drivers, this should fix a Clang compilar warning when building without CONFIG_OF in which case of_match_ptr() is NULL and the const struct we would use otherwise is unused. Signed-off-by: Martin Kepplinger <martin.kepplinger@puri.sm> Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
e7cc3e0960
commit
62456590b8
|
@ -2176,7 +2176,7 @@ static struct i2c_driver hi846_i2c_driver = {
|
|||
.driver = {
|
||||
.name = "hi846",
|
||||
.pm = &hi846_pm_ops,
|
||||
.of_match_table = of_match_ptr(hi846_of_match),
|
||||
.of_match_table = hi846_of_match,
|
||||
},
|
||||
.probe_new = hi846_probe,
|
||||
.remove = hi846_remove,
|
||||
|
|
Loading…
Reference in New Issue