From: Colin Ian King Date: Tue, 3 Jul 2018 07:43:39 +0000 (+0100) Subject: mtd: cfi: cmdset_0002: remove redundant variable timeo X-Git-Tag: v4.19-rc1~171^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0219ef1ce577b85a859559c43458c52ca7f29586;p=thirdparty%2Fkernel%2Flinux.git mtd: cfi: cmdset_0002: remove redundant variable timeo Variable is_local is being assigned but is never used hence it is redundant and can be removed. Cleans up clang warning: warning: variable 'timeo' set but not used [-Wunused-but-set-variable] Signed-off-by: Colin Ian King Signed-off-by: Boris Brezillon --- diff --git a/drivers/mtd/chips/cfi_cmdset_0002.c b/drivers/mtd/chips/cfi_cmdset_0002.c index a0c655628d6d5..cf6cd7623e8f6 100644 --- a/drivers/mtd/chips/cfi_cmdset_0002.c +++ b/drivers/mtd/chips/cfi_cmdset_0002.c @@ -1216,7 +1216,6 @@ static inline int do_read_secsi_onechip(struct map_info *map, size_t grouplen) { DECLARE_WAITQUEUE(wait, current); - unsigned long timeo = jiffies + HZ; retry: mutex_lock(&chip->mutex); @@ -1229,7 +1228,6 @@ static inline int do_read_secsi_onechip(struct map_info *map, schedule(); remove_wait_queue(&chip->wq, &wait); - timeo = jiffies + HZ; goto retry; }