diff mbox series

staging: media: sun6i-isp: drop of_match_ptr for ID table

Message ID f0f8e8bd-4f7c-2c80-65e7-b5e04e122f60@xs4all.nl (mailing list archive)
State New, archived
Headers show
Series staging: media: sun6i-isp: drop of_match_ptr for ID table | expand

Commit Message

Hans Verkuil July 20, 2023, 7:18 a.m. UTC
The driver can match only via the DT table so the table should be always
used and the of_match_ptr does not make any sense.

This also fixes this !CONFIG_OF error:

drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c:529:34: warning: 'sun6i_isp_of_match' defined but not used [-Wunused-const-variable=]
  529 | static const struct of_device_id sun6i_isp_of_match[] = {
      |                                  ^~~~~~~~~~~~~~~~~

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
---
 drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Chen-Yu Tsai July 20, 2023, 4:39 p.m. UTC | #1
On Thu, Jul 20, 2023 at 3:18 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
>
> The driver can match only via the DT table so the table should be always
> used and the of_match_ptr does not make any sense.
>
> This also fixes this !CONFIG_OF error:
>
> drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c:529:34: warning: 'sun6i_isp_of_match' defined but not used [-Wunused-const-variable=]
>   529 | static const struct of_device_id sun6i_isp_of_match[] = {
>       |                                  ^~~~~~~~~~~~~~~~~
>
> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

Reviewed-by: Chen-Yu Tsai <wens@csie.org>
diff mbox series

Patch

diff --git a/drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c b/drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c
index 0dc75adbd9d8..472057f03bc2 100644
--- a/drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c
+++ b/drivers/staging/media/sunxi/sun6i-isp/sun6i_isp.c
@@ -541,7 +541,7 @@  static struct platform_driver sun6i_isp_platform_driver = {
 	.remove_new = sun6i_isp_remove,
 	.driver	= {
 		.name		= SUN6I_ISP_NAME,
-		.of_match_table	= of_match_ptr(sun6i_isp_of_match),
+		.of_match_table	= sun6i_isp_of_match,
 		.pm		= &sun6i_isp_pm_ops,
 	},
 };