linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hibernate: fix some format issues
@ 2020-06-22  9:09 chenxiang
  2020-07-09 12:36 ` Rafael J. Wysocki
  0 siblings, 1 reply; 2+ messages in thread
From: chenxiang @ 2020-06-22  9:09 UTC (permalink / raw)
  To: rafael, pavel; +Cc: john.garry, linux-pm, linuxarm, Xiang Chen

From: Xiang Chen <chenxiang66@hisilicon.com>

In hibernate.c, some places lack of spaces while some places have
redundant spaces. So fix them.

Signed-off-by: Xiang Chen <chenxiang66@hisilicon.com>
---
 kernel/power/hibernate.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 02ec716..5714f51 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -1062,7 +1062,7 @@ power_attr(disk);
 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
 			   char *buf)
 {
-	return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
+	return sprintf(buf, "%d:%d\n", MAJOR(swsusp_resume_device),
 		       MINOR(swsusp_resume_device));
 }
 
@@ -1162,7 +1162,7 @@ static ssize_t reserved_size_store(struct kobject *kobj,
 
 power_attr(reserved_size);
 
-static struct attribute * g[] = {
+static struct attribute *g[] = {
 	&disk_attr.attr,
 	&resume_offset_attr.attr,
 	&resume_attr.attr,
@@ -1190,7 +1190,7 @@ static int __init resume_setup(char *str)
 	if (noresume)
 		return 1;
 
-	strncpy( resume_file, str, 255 );
+	strncpy(resume_file, str, 255);
 	return 1;
 }
 
-- 
2.8.1


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

* Re: [PATCH] hibernate: fix some format issues
  2020-06-22  9:09 [PATCH] hibernate: fix some format issues chenxiang
@ 2020-07-09 12:36 ` Rafael J. Wysocki
  0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2020-07-09 12:36 UTC (permalink / raw)
  To: chenxiang; +Cc: Rafael J. Wysocki, Pavel Machek, John Garry, Linux PM, Linuxarm

On Mon, Jun 22, 2020 at 11:13 AM chenxiang <chenxiang66@hisilicon.com> wrote:
>
> From: Xiang Chen <chenxiang66@hisilicon.com>
>
> In hibernate.c, some places lack of spaces while some places have
> redundant spaces. So fix them.
>
> Signed-off-by: Xiang Chen <chenxiang66@hisilicon.com>

Applied as 5.9 material under the "PM: hibernate: fix white space in a
few places" subject, thanks!

> ---
>  kernel/power/hibernate.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
> index 02ec716..5714f51 100644
> --- a/kernel/power/hibernate.c
> +++ b/kernel/power/hibernate.c
> @@ -1062,7 +1062,7 @@ power_attr(disk);
>  static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
>                            char *buf)
>  {
> -       return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
> +       return sprintf(buf, "%d:%d\n", MAJOR(swsusp_resume_device),
>                        MINOR(swsusp_resume_device));
>  }
>
> @@ -1162,7 +1162,7 @@ static ssize_t reserved_size_store(struct kobject *kobj,
>
>  power_attr(reserved_size);
>
> -static struct attribute * g[] = {
> +static struct attribute *g[] = {
>         &disk_attr.attr,
>         &resume_offset_attr.attr,
>         &resume_attr.attr,
> @@ -1190,7 +1190,7 @@ static int __init resume_setup(char *str)
>         if (noresume)
>                 return 1;
>
> -       strncpy( resume_file, str, 255 );
> +       strncpy(resume_file, str, 255);
>         return 1;
>  }
>
> --
> 2.8.1
>

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

end of thread, other threads:[~2020-07-09 12:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-22  9:09 [PATCH] hibernate: fix some format issues chenxiang
2020-07-09 12:36 ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).