This driver can use the replacement API instead of calling
of_match_device() and then dereferencing the pointer that is returned.
This nicely avoids referencing the match table when it is undefined with
configurations where CONFIG_OF=n.

Cc: Arnd Bergmann <a...@arndb.de>
Cc: Geert Uytterhoeven <ge...@linux-m68k.org>
Cc: Jacopo Mondi <jac...@jmondi.org>
Cc: Mauro Carvalho Chehab <mche...@kernel.org>
Cc: Rob Herring <robh...@kernel.org>
Cc: Frank Rowand <frowand.l...@gmail.com>
Cc: <linux-me...@vger.kernel.org>
Cc: <linux-renesas-...@vger.kernel.org>
Signed-off-by: Stephen Boyd <swb...@chromium.org>
---

Please ack or pick for immediate merge so the last patch can be merged.

 drivers/media/platform/renesas-ceu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/platform/renesas-ceu.c 
b/drivers/media/platform/renesas-ceu.c
index 197b3991330d..60518bbc2cd5 100644
--- a/drivers/media/platform/renesas-ceu.c
+++ b/drivers/media/platform/renesas-ceu.c
@@ -1679,7 +1679,7 @@ static int ceu_probe(struct platform_device *pdev)
        v4l2_async_notifier_init(&ceudev->notifier);
 
        if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
-               ceu_data = of_match_device(ceu_of_match, dev)->data;
+               ceu_data = of_device_get_match_data(dev);
                num_subdevs = ceu_parse_dt(ceudev);
        } else if (dev->platform_data) {
                /* Assume SH4 if booting with platform data. */
-- 
Sent by a computer through tubes

Reply via email to