Message ID | 20230814025520.2708714-3-ruanjinjie@huawei.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 81d463c02b910f4abb1415c365f9491e10333552 |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | net: Remove redundant of_match_ptr() macro | expand |
diff --git a/drivers/net/dsa/rzn1_a5psw.c b/drivers/net/dsa/rzn1_a5psw.c index c37d2e537230..b31ae8845b58 100644 --- a/drivers/net/dsa/rzn1_a5psw.c +++ b/drivers/net/dsa/rzn1_a5psw.c @@ -1090,7 +1090,7 @@ MODULE_DEVICE_TABLE(of, a5psw_of_mtable); static struct platform_driver a5psw_driver = { .driver = { .name = "rzn1_a5psw", - .of_match_table = of_match_ptr(a5psw_of_mtable), + .of_match_table = a5psw_of_mtable, }, .probe = a5psw_probe, .remove = a5psw_remove,