media: renesas-ceu: Use of_device_get_match_data()
authorStephen Boyd <swboyd@chromium.org>
Sat, 23 Jan 2021 03:44:23 +0000 (19:44 -0800)
committerRob Herring <robh@kernel.org>
Tue, 26 Jan 2021 18:17:31 +0000 (12:17 -0600)
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.

Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Acked-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Jacopo Mondi <jacopo@jmondi.org>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Frank Rowand <frowand.list@gmail.com>
Cc: <linux-media@vger.kernel.org>
Cc: <linux-renesas-soc@vger.kernel.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20210123034428.2841052-2-swboyd@chromium.org
drivers/media/platform/renesas-ceu.c

index 4a633ad0e8fa6fe0a16cde545139cfc9a41e1d95..352e7c84d5bad6423022c70fd8b7883e4a96b06b 100644 (file)
@@ -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. */