rtc: rx8010: rename rx8010_init_client() to rx8010_init()
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 17 Sep 2020 11:46:56 +0000 (13:46 +0200)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Tue, 29 Sep 2020 20:18:10 +0000 (22:18 +0200)
Since the switch to using regmap this function no longer takes the
I2C client struct as argument nor do we even interact with the client
anywhere other than when creating the regmap.

Rename it to a less misleading name: "rx8010_init()".

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20200917114656.9036-1-brgl@bgdev.pl
drivers/rtc/rtc-rx8010.c

index 01e9017d4025ade69db7ce4d903d74d4b51fb794..dca41a2a39b23dde2920e478c8f174be1ac8d3b5 100644 (file)
@@ -169,7 +169,7 @@ static int rx8010_set_time(struct device *dev, struct rtc_time *dt)
        return 0;
 }
 
-static int rx8010_init_client(struct device *dev)
+static int rx8010_init(struct device *dev)
 {
        struct rx8010_data *rx8010 = dev_get_drvdata(dev);
        u8 ctrl[2];
@@ -391,7 +391,7 @@ static int rx8010_probe(struct i2c_client *client)
        if (IS_ERR(rx8010->regs))
                return PTR_ERR(rx8010->regs);
 
-       err = rx8010_init_client(dev);
+       err = rx8010_init(dev);
        if (err)
                return err;