diff mbox series

block: Remove unnecessary variable assignment

Message ID 1642414957-6785-1-git-send-email-zhenggy@chinatelecom.cn (mailing list archive)
State New, archived
Headers show
Series block: Remove unnecessary variable assignment | expand

Commit Message

GuoYong Zheng Jan. 17, 2022, 10:22 a.m. UTC
The parameter "ret" should be zero when running to this line,
no need to set to zero again, remove it.

Signed-off-by: GuoYong Zheng <zhenggy@chinatelecom.cn>
---
 block/blk-sysfs.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Jens Axboe Jan. 17, 2022, 2:24 p.m. UTC | #1
On Mon, 17 Jan 2022 18:22:37 +0800, GuoYong Zheng wrote:
> The parameter "ret" should be zero when running to this line,
> no need to set to zero again, remove it.
> 
> 

Applied, thanks!

[1/1] block: Remove unnecessary variable assignment
      commit: e6a2e5116e07ce5acc8698785c29e9e47f010fd5

Best regards,
diff mbox series

Patch

diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
index e20eadf..bed4a2f 100644
--- a/block/blk-sysfs.c
+++ b/block/blk-sysfs.c
@@ -887,7 +887,6 @@  int blk_register_queue(struct gendisk *disk)
 		kobject_uevent(&q->elevator->kobj, KOBJ_ADD);
 	mutex_unlock(&q->sysfs_lock);
 
-	ret = 0;
 unlock:
 	mutex_unlock(&q->sysfs_dir_lock);