All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] md/bcache: convert comma to semicolon
@ 2020-12-11  8:52 Zheng Yongjun
  2020-12-14  6:01 ` Coly Li
  0 siblings, 1 reply; 2+ messages in thread
From: Zheng Yongjun @ 2020-12-11  8:52 UTC (permalink / raw)
  To: colyli, kent.overstreet, linux-bcache, linux-kernel; +Cc: Zheng Yongjun

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 drivers/md/bcache/sysfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c
index 554e3afc9b68..00a520c03f41 100644
--- a/drivers/md/bcache/sysfs.c
+++ b/drivers/md/bcache/sysfs.c
@@ -404,7 +404,7 @@ STORE(__cached_dev)
 		if (!env)
 			return -ENOMEM;
 		add_uevent_var(env, "DRIVER=bcache");
-		add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid),
+		add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid);
 		add_uevent_var(env, "CACHED_LABEL=%s", buf);
 		kobject_uevent_env(&disk_to_dev(dc->disk.disk)->kobj,
 				   KOBJ_CHANGE,
-- 
2.22.0


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

* Re: [PATCH -next] md/bcache: convert comma to semicolon
  2020-12-11  8:52 [PATCH -next] md/bcache: convert comma to semicolon Zheng Yongjun
@ 2020-12-14  6:01 ` Coly Li
  0 siblings, 0 replies; 2+ messages in thread
From: Coly Li @ 2020-12-14  6:01 UTC (permalink / raw)
  To: Zheng Yongjun, kent.overstreet, linux-bcache, linux-kernel

On 12/11/20 4:52 PM, Zheng Yongjun wrote:
> Replace a comma between expression statements by a semicolon.
> 
> Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>

Thanks for the catch. Added in my 2nd wave series.

Coly Li

> ---
>  drivers/md/bcache/sysfs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c
> index 554e3afc9b68..00a520c03f41 100644
> --- a/drivers/md/bcache/sysfs.c
> +++ b/drivers/md/bcache/sysfs.c
> @@ -404,7 +404,7 @@ STORE(__cached_dev)
>  		if (!env)
>  			return -ENOMEM;
>  		add_uevent_var(env, "DRIVER=bcache");
> -		add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid),
> +		add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid);
>  		add_uevent_var(env, "CACHED_LABEL=%s", buf);
>  		kobject_uevent_env(&disk_to_dev(dc->disk.disk)->kobj,
>  				   KOBJ_CHANGE,
> 


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

end of thread, other threads:[~2020-12-14  6:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-11  8:52 [PATCH -next] md/bcache: convert comma to semicolon Zheng Yongjun
2020-12-14  6:01 ` Coly Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.