public inbox for linux-iio@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: iio: accel: Switch hardcoded function name with a reference to __func__ making the code more maintainable
@ 2019-04-19  8:36 Mohan Kumar
  2019-04-22 10:43 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Mohan Kumar @ 2019-04-19  8:36 UTC (permalink / raw)
  To: jic23; +Cc: knaack.h, lars, linus.walleij, linux-iio

It fixes the following checkpatch.pl warning:

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

Signed-off-by: Mohan Kumar <mohankumar718@gmail.com>
---
 drivers/iio/accel/bmc150-accel-core.c | 2 +-
 drivers/iio/accel/kxcjk-1013.c        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/accel/bmc150-accel-core.c b/drivers/iio/accel/bmc150-accel-core.c
index b4e2d9b..44d7c49 100644
--- a/drivers/iio/accel/bmc150-accel-core.c
+++ b/drivers/iio/accel/bmc150-accel-core.c
@@ -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);
 
diff --git a/drivers/iio/accel/kxcjk-1013.c b/drivers/iio/accel/kxcjk-1013.c
index a5c9d3d..cbcf3ee0 100644
--- a/drivers/iio/accel/kxcjk-1013.c
+++ b/drivers/iio/accel/kxcjk-1013.c
@@ -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;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] drivers: iio: accel: Switch hardcoded function name with a reference to __func__ making the code more maintainable
  2019-04-19  8:36 [PATCH] drivers: iio: accel: Switch hardcoded function name with a reference to __func__ making the code more maintainable Mohan Kumar
@ 2019-04-22 10:43 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2019-04-22 10:43 UTC (permalink / raw)
  To: Mohan Kumar; +Cc: knaack.h, lars, linus.walleij, linux-iio

On Fri, 19 Apr 2019 11:36:51 +0300
Mohan Kumar <mohankumar718@gmail.com> wrote:

> It fixes the following checkpatch.pl warning:
> 
> WARNING: Prefer using '"%s...", __func__' to using function's name, in a
> string
> 
> Signed-off-by: Mohan Kumar <mohankumar718@gmail.com>
Patch is good, but please check other patches for the area
git log --oneline -- drivers/iio to get the standard formatting
for descriptions.  The patch title is also a bit to long.

I've edited that and applied the patch to the togreg branch
of iio.git and pushed out as testing for the autobuilders to
play with it.

Thanks

Jonathan

> ---
>  drivers/iio/accel/bmc150-accel-core.c | 2 +-
>  drivers/iio/accel/kxcjk-1013.c        | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/accel/bmc150-accel-core.c b/drivers/iio/accel/bmc150-accel-core.c
> index b4e2d9b..44d7c49 100644
> --- a/drivers/iio/accel/bmc150-accel-core.c
> +++ b/drivers/iio/accel/bmc150-accel-core.c
> @@ -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);
>  
> diff --git a/drivers/iio/accel/kxcjk-1013.c b/drivers/iio/accel/kxcjk-1013.c
> index a5c9d3d..cbcf3ee0 100644
> --- a/drivers/iio/accel/kxcjk-1013.c
> +++ b/drivers/iio/accel/kxcjk-1013.c
> @@ -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;


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-04-22 10:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-19  8:36 [PATCH] drivers: iio: accel: Switch hardcoded function name with a reference to __func__ making the code more maintainable Mohan Kumar
2019-04-22 10:43 ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox