Message ID | 20230811024945.2256437-3-ruanjinjie@huawei.com |
---|---|
State | Accepted |
Commit | 29d3e0b8bdb5dae76e529c70c06a2132d9c39f86 |
Headers | show |
Series | staging: Remove redundant of_match_ptr() macro | expand |
Hi, On Fri 11 Aug 23, 10:49, 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> Acked-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com> Thanks for the patch! Paul > --- > drivers/staging/media/sunxi/cedrus/cedrus.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/media/sunxi/cedrus/cedrus.c b/drivers/staging/media/sunxi/cedrus/cedrus.c > index 8e248d4a0aec..f52df6836045 100644 > --- a/drivers/staging/media/sunxi/cedrus/cedrus.c > +++ b/drivers/staging/media/sunxi/cedrus/cedrus.c > @@ -708,7 +708,7 @@ static struct platform_driver cedrus_driver = { > .remove_new = cedrus_remove, > .driver = { > .name = CEDRUS_NAME, > - .of_match_table = of_match_ptr(cedrus_dt_match), > + .of_match_table = cedrus_dt_match, > .pm = &cedrus_dev_pm_ops, > }, > }; > -- > 2.34.1 >
diff --git a/drivers/staging/media/sunxi/cedrus/cedrus.c b/drivers/staging/media/sunxi/cedrus/cedrus.c index 8e248d4a0aec..f52df6836045 100644 --- a/drivers/staging/media/sunxi/cedrus/cedrus.c +++ b/drivers/staging/media/sunxi/cedrus/cedrus.c @@ -708,7 +708,7 @@ static struct platform_driver cedrus_driver = { .remove_new = cedrus_remove, .driver = { .name = CEDRUS_NAME, - .of_match_table = of_match_ptr(cedrus_dt_match), + .of_match_table = cedrus_dt_match, .pm = &cedrus_dev_pm_ops, }, };
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/staging/media/sunxi/cedrus/cedrus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)