]> git.karo-electronics.de Git - linux-beck.git/commitdiff
mfd: da9062-core: Rename get_device_type to da9062_get_device_type
authorAxel Lin <axel.lin@ingics.com>
Fri, 9 Oct 2015 10:22:03 +0000 (18:22 +0800)
committerLee Jones <lee.jones@linaro.org>
Fri, 30 Oct 2015 17:19:51 +0000 (17:19 +0000)
Rename get_device_type() to da9062_get_device_type().
This function is only used in this file so make it static.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/da9062-core.c

index f80d9471f2e7fd1b851d871df080a991e85bc1e6..a9ad024ec6b06a3401138d9600263a355235186e 100644 (file)
@@ -198,7 +198,7 @@ static int da9062_clear_fault_log(struct da9062 *chip)
        return ret;
 }
 
-int get_device_type(struct da9062 *chip)
+static int da9062_get_device_type(struct da9062 *chip)
 {
        int device_id, variant_id, variant_mrc;
        int ret;
@@ -466,7 +466,7 @@ static int da9062_i2c_probe(struct i2c_client *i2c,
        if (ret < 0)
                dev_warn(chip->dev, "Cannot clear fault log\n");
 
-       ret = get_device_type(chip);
+       ret = da9062_get_device_type(chip);
        if (ret)
                return ret;