Commit ce7afa5c authored by Mohan Kumar's avatar Mohan Kumar Committed by Jonathan Cameron
Browse files

iio:accel:Switch hardcoded function name with a reference to __func__ making...


iio:accel:Switch hardcoded function name with a reference to __func__ making the code more maintainable

It fixes the following checkpatch.pl warning:

WARNING: Prefer using '"%s...", __func__' to using function's name, in a
string

Signed-off-by: default avatarMohan Kumar <mohankumar718@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 80696785
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -394,7 +394,7 @@ static int bmc150_accel_set_power_state(struct bmc150_accel_data *data, bool on)

	if (ret < 0) {
		dev_err(dev,
			"Failed: bmc150_accel_set_power_state for %d\n", on);
			"Failed: %s for %d\n", __func__, on);
		if (on)
			pm_runtime_put_noidle(dev);

+1 −1
Original line number Diff line number Diff line
@@ -451,7 +451,7 @@ static int kxcjk1013_set_power_state(struct kxcjk1013_data *data, bool on)
	}
	if (ret < 0) {
		dev_err(&data->client->dev,
			"Failed: kxcjk1013_set_power_state for %d\n", on);
			"Failed: %s for %d\n", __func__, on);
		if (on)
			pm_runtime_put_noidle(&data->client->dev);
		return ret;