hwspinlock: sirf: Remove the redundant 'of_match_ptr'
authorBaolin Wang <baolin.wang7@gmail.com>
Mon, 8 Jun 2020 12:20:28 +0000 (20:20 +0800)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Thu, 10 Dec 2020 19:34:40 +0000 (13:34 -0600)
Remove the the redundant 'of_match_ptr' macro to fix below warning
when the CONFIG_OF is not selected.

All warnings:
drivers/hwspinlock/sirf_hwspinlock.c:87:34: warning: unused variable
'sirf_hwpinlock_ids' [-Wunused-const-variable]

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Baolin Wang <baolin.wang7@gmail.com>
Link: https://lore.kernel.org/r/250d35cb489c3c4c066f7ce256d27f36712a1979.1591618255.git.baolin.wang7@gmail.com
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
drivers/hwspinlock/sirf_hwspinlock.c

index 823d3c4f621ed5ca83ce6d071a15413486d0a9aa..a3f77120bad767096fa431e1e4f6f1b35fd516fb 100644 (file)
@@ -94,7 +94,7 @@ static struct platform_driver sirf_hwspinlock_driver = {
        .probe = sirf_hwspinlock_probe,
        .driver = {
                .name = "atlas7_hwspinlock",
-               .of_match_table = of_match_ptr(sirf_hwpinlock_ids),
+               .of_match_table = sirf_hwpinlock_ids,
        },
 };