iio: accel: bma400: Simplify an error message
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 15 Apr 2023 16:25:41 +0000 (18:25 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 13 May 2023 16:56:05 +0000 (17:56 +0100)
dev_err_probe() already display the error code. There is no need to
duplicate it explicitly in the error message.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/9373d41b0a1f3dc3fc0d31c1daaa19d9a7ec4dcd.1681575924.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/accel/bma400_core.c

index a68b845..e90e2f0 100644 (file)
@@ -868,8 +868,7 @@ static int bma400_init(struct bma400_data *data)
                                             ARRAY_SIZE(regulator_names),
                                             regulator_names);
        if (ret)
-               return dev_err_probe(data->dev, ret, "Failed to get regulators: %d\n",
-                                    ret);
+               return dev_err_probe(data->dev, ret, "Failed to get regulators\n");
 
        /* Try to read chip_id register. It must return 0x90. */
        ret = regmap_read(data->regmap, BMA400_CHIP_ID_REG, &val);