Re: [PATCH] scsi: remove redundant initialization of variable ret

2020-09-29 Thread Martin K. Petersen
On Fri, 18 Sep 2020 17:07:47 +0800, Jing Xiangfeng wrote: > The variable ret is being initialized with '-ENOMEM' that is > meaningless. So remove it. Applied to 5.10/scsi-queue, thanks! [1/1] scsi: oak: Remove redundant initialization of variable ret https://git.kernel.org/mkp/scsi/c/713a8

Re: [PATCH] scsi: remove redundant initialization of variable ret

2020-09-22 Thread Martin K. Petersen
Jing, > The variable ret is being initialized with '-ENOMEM' that is > meaningless. So remove it. Applied to 5.10/scsi-staging, thanks! -- Martin K. Petersen Oracle Linux Engineering

Re: [PATCH] scsi: remove redundant initialization of variable ret

2020-09-19 Thread Finn Thain
On Fri, 18 Sep 2020, Jing Xiangfeng wrote: > The variable ret is being initialized with '-ENOMEM' that is > meaningless. So remove it. > Acked-by: Finn Thain

[PATCH] scsi: remove redundant initialization of variable ret

2020-09-18 Thread Jing Xiangfeng
The variable ret is being initialized with '-ENOMEM' that is meaningless. So remove it. Signed-off-by: Jing Xiangfeng --- drivers/scsi/arm/oak.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/arm/oak.c b/drivers/scsi/arm/oak.c index 7c9d361e91a9..78f33d57c3e8 10