Message ID | 20230814025520.2708714-5-ruanjinjie@huawei.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 537a6b9927083e2b7b0b3223dc77a985707d5339 |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | net: Remove redundant of_match_ptr() macro | expand |
On Mon, Aug 14, 2023 at 10:55:18AM +0800, Ruan Jinjie wrote: > 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>
diff --git a/drivers/net/ethernet/qualcomm/qca_uart.c b/drivers/net/ethernet/qualcomm/qca_uart.c index ace99c62d03a..9adec91f35e9 100644 --- a/drivers/net/ethernet/qualcomm/qca_uart.c +++ b/drivers/net/ethernet/qualcomm/qca_uart.c @@ -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, }, };
The driver depends on CONFIG_OF, it is not necessary to use of_match_ptr() here. Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com> --- drivers/net/ethernet/qualcomm/qca_uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)