media: platform: mtk-mdp3: work around unused-variable warning
authorArnd Bergmann <arnd@arndb.de>
Tue, 18 Apr 2023 09:15:48 +0000 (11:15 +0200)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 8 May 2023 11:11:25 +0000 (12:11 +0100)
commitae3c253f595b31ff30d55b4c50b4470e56bc4e0d
tree9507ddfb53a4850fd7f38cb352a0c34c8e53f7b7
parent55e2a6e36be6d61f914898ce731f9321c0dcf4e8
media: platform: mtk-mdp3: work around unused-variable warning

When CONFIG_OF is disabled, the 'data' variable is not used at all
because of_match_node() turns into a dummy macro:

drivers/media/platform/mediatek/mdp3/mtk-mdp3-comp.c: In function 'mdp_comp_sub_create':
drivers/media/platform/mediatek/mdp3/mtk-mdp3-comp.c:1038:36: error: unused variable 'data' [-Werror=unused-variable]
 1038 |  const struct mtk_mdp_driver_data *data = mdp->mdp_data;
      |                                    ^~~~

Remove the variable again by moving the pointer dereference into the
of_match_node call.

Fixes: b385b991ef2f ("media: platform: mtk-mdp3: chip config split about subcomponents")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/platform/mediatek/mdp3/mtk-mdp3-comp.c