net: qualcomm: Remove redundant of_match_ptr()
authorRuan Jinjie <ruanjinjie@huawei.com>
Mon, 14 Aug 2023 02:55:18 +0000 (10:55 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 16 Aug 2023 08:59:40 +0000 (09:59 +0100)
The driver depends on CONFIG_OF, it is not necessary to use
of_match_ptr() here.

Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/qca_uart.c

index ace99c6..9adec91 100644 (file)
@@ -403,7 +403,7 @@ static struct serdev_device_driver qca_uart_driver = {
        .remove = qca_uart_remove,
        .driver = {
                .name = QCAUART_DRV_NAME,
-               .of_match_table = of_match_ptr(qca_uart_of_match),
+               .of_match_table = qca_uart_of_match,
        },
 };