clk: imx93: drop of_match_ptr

There is build warning when CONFIG_OF is not selected.
>> drivers/clk/imx/clk-imx93.c:324:34: warning: 'imx93_clk_of_match'
>> defined but not used [-Wunused-const-variable=]
324 | static const struct of_device_id imx93_clk_of_match[] = {
| ^~~~~~~~~~~~~~~~~~

The driver only support DT table, no sense to use of_match_ptr.

Fixes: 24defbe194b6 ("clk: imx: add i.MX93 clk")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20220830033137.4149542-3-peng.fan@oss.nxp.com
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by Peng Fan and committed by Stephen Boyd daaa2fbe 1b24a132

+1 -1
+1 -1
drivers/clk/imx/clk-imx93.c
··· 332 .driver = { 333 .name = "imx93-ccm", 334 .suppress_bind_attrs = true, 335 - .of_match_table = of_match_ptr(imx93_clk_of_match), 336 }, 337 }; 338 module_platform_driver(imx93_clk_driver);
··· 332 .driver = { 333 .name = "imx93-ccm", 334 .suppress_bind_attrs = true, 335 + .of_match_table = imx93_clk_of_match, 336 }, 337 }; 338 module_platform_driver(imx93_clk_driver);