mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
iio: gyro: mpu3050: Use vsprintf extension %pe for symbolic error name
Utilize %pe format specifier from vsprintf while printing error logs with dev_err(). Discards the use of unnecessary explicit casting and prints symbolic error name which might prove to be convenient during debugging. Signed-off-by: Nishant Malpani <nish.malpani25@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
committed by
Jonathan Cameron
parent
df91cf5c28
commit
0e5fd38765
@@ -51,8 +51,8 @@ static int mpu3050_i2c_probe(struct i2c_client *client,
|
|||||||
|
|
||||||
regmap = devm_regmap_init_i2c(client, &mpu3050_i2c_regmap_config);
|
regmap = devm_regmap_init_i2c(client, &mpu3050_i2c_regmap_config);
|
||||||
if (IS_ERR(regmap)) {
|
if (IS_ERR(regmap)) {
|
||||||
dev_err(&client->dev, "Failed to register i2c regmap %d\n",
|
dev_err(&client->dev, "Failed to register i2c regmap: %pe\n",
|
||||||
(int)PTR_ERR(regmap));
|
regmap);
|
||||||
return PTR_ERR(regmap);
|
return PTR_ERR(regmap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user