mfd: iqs62x: Rename regmap_config struct
authorJeff LaBundy <jeff@labundy.com>
Mon, 18 Jan 2021 03:57:05 +0000 (21:57 -0600)
committerLee Jones <lee.jones@linaro.org>
Mon, 8 Feb 2021 13:54:33 +0000 (13:54 +0000)
The regmap member of the driver's private data is called 'regmap',
but the regmap_config struct is called 'iqs62x_map_config'. Rename
the latter to 'iqs62x_regmap_config' for consistency.

Signed-off-by: Jeff LaBundy <jeff@labundy.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/iqs62x.c

index ff968dca23bb3ccd8a6bb1c0198df80983737161..7a1ff7c78801b2f5466a8b9ed7fbe61dddf52ce1 100644 (file)
@@ -866,7 +866,7 @@ static const struct iqs62x_dev_desc iqs62x_devs[] = {
        },
 };
 
-static const struct regmap_config iqs62x_map_config = {
+static const struct regmap_config iqs62x_regmap_config = {
        .reg_bits = 8,
        .val_bits = 8,
        .max_register = IQS62X_MAX_REG,
@@ -892,7 +892,7 @@ static int iqs62x_probe(struct i2c_client *client)
        INIT_LIST_HEAD(&iqs62x->fw_blk_head);
        init_completion(&iqs62x->fw_done);
 
-       iqs62x->regmap = devm_regmap_init_i2c(client, &iqs62x_map_config);
+       iqs62x->regmap = devm_regmap_init_i2c(client, &iqs62x_regmap_config);
        if (IS_ERR(iqs62x->regmap)) {
                ret = PTR_ERR(iqs62x->regmap);
                dev_err(&client->dev, "Failed to initialize register map: %d\n",