soc: imx8m: fix build warning

Fix the build warning with x86_64-randconfig
>> drivers/soc/imx/soc-imx8m.c:150:34: warning: unused variable
>> 'imx8_soc_match' [-Wunused-const-variable]
static const struct of_device_id imx8_soc_match[] = { ^

Fixes: fc40200ebf82 ("soc: imx: increase build coverage for imx8m soc driver")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>

authored by Peng Fan and committed by Shawn Guo a7213214 48454460

Changed files
+1 -1
drivers
soc
+1 -1
drivers/soc/imx/soc-imx8m.c
··· 150 150 .soc_revision = imx8mm_soc_revision, 151 151 }; 152 152 153 - static const struct of_device_id imx8_soc_match[] = { 153 + static __maybe_unused const struct of_device_id imx8_soc_match[] = { 154 154 { .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, }, 155 155 { .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, }, 156 156 { .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, },