i2c: davinci: use generic device property accessors
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 11 Dec 2024 10:23:37 +0000 (11:23 +0100)
committerAndi Shyti <andi.shyti@kernel.org>
Tue, 7 Jan 2025 22:49:07 +0000 (23:49 +0100)
Don't use generic OF APIs if the generic device-level ones will do.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Andi Shyti <andi.shyti@kernel.org>
Link: https://lore.kernel.org/r/20241211102337.37956-3-brgl@bgdev.pl
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
drivers/i2c/busses/i2c-davinci.c

index bab9f785eeecc99ac5bb28df30292d386febb65c..6a909d339681214ed4f382b62f8cd924f4295e69 100644 (file)
@@ -23,9 +23,9 @@
 #include <linux/io.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
-#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
+#include <linux/property.h>
 #include <linux/sched.h>
 #include <linux/slab.h>
 
@@ -173,7 +173,6 @@ static void i2c_davinci_calc_clk_dividers(struct davinci_i2c_dev *dev)
        u32 clkh;
        u32 clkl;
        u32 input_clock = clk_get_rate(dev->clk);
-       struct device_node *of_node = dev->dev->of_node;
 
        /* NOTE: I2C Clock divider programming info
         * As per I2C specs the following formulas provide prescaler
@@ -207,7 +206,7 @@ static void i2c_davinci_calc_clk_dividers(struct davinci_i2c_dev *dev)
                psc++;  /* better to run under spec than over */
        d = (psc >= 2) ? 5 : 7 - psc;
 
-       if (of_node && of_device_is_compatible(of_node, "ti,keystone-i2c"))
+       if (device_is_compatible(dev->dev, "ti,keystone-i2c"))
                d = 6;
 
        clk = ((input_clock / (psc + 1)) / (dev->bus_freq * 1000));
@@ -811,7 +810,7 @@ static int davinci_i2c_probe(struct platform_device *pdev)
        adap->algo = &i2c_davinci_algo;
        adap->dev.parent = &pdev->dev;
        adap->timeout = DAVINCI_I2C_TIMEOUT;
-       adap->dev.of_node = pdev->dev.of_node;
+       adap->dev.of_node = dev_of_node(&pdev->dev);
 
        if (dev->has_pfunc)
                adap->bus_recovery_info = &davinci_i2c_scl_recovery_info;