net: dsa: microchip: fix Clang -Wunused-const-variable warning on 'ksz_dt_ids'
authorArun Ramadoss <arun.ramadoss@microchip.com>
Fri, 15 Jul 2022 05:33:34 +0000 (11:03 +0530)
committerDavid S. Miller <davem@davemloft.net>
Mon, 18 Jul 2022 10:29:30 +0000 (11:29 +0100)
This patch removes the of_match_ptr() pointer when dereferencing the
ksz_dt_ids which produce the unused variable warning.

Reported-by: kernel test robot <lkp@intel.com>
Suggested-by: Arnd Bergmann <arnd@kernel.org>
Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/microchip/ksz_spi.c

index 4844830..05bd089 100644 (file)
@@ -215,7 +215,7 @@ static struct spi_driver ksz_spi_driver = {
        .driver = {
                .name   = "ksz-switch",
                .owner  = THIS_MODULE,
-               .of_match_table = of_match_ptr(ksz_dt_ids),
+               .of_match_table = ksz_dt_ids,
        },
        .id_table = ksz_spi_ids,
        .probe  = ksz_spi_probe,