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 <colin.king@canonical.com> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
This commit is contained in:
parent
4836024616
commit
0219ef1ce5
@ -1216,7 +1216,6 @@ static inline int do_read_secsi_onechip(struct map_info *map,
|
|||||||
size_t grouplen)
|
size_t grouplen)
|
||||||
{
|
{
|
||||||
DECLARE_WAITQUEUE(wait, current);
|
DECLARE_WAITQUEUE(wait, current);
|
||||||
unsigned long timeo = jiffies + HZ;
|
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
mutex_lock(&chip->mutex);
|
mutex_lock(&chip->mutex);
|
||||||
@ -1229,7 +1228,6 @@ static inline int do_read_secsi_onechip(struct map_info *map,
|
|||||||
|
|
||||||
schedule();
|
schedule();
|
||||||
remove_wait_queue(&chip->wq, &wait);
|
remove_wait_queue(&chip->wq, &wait);
|
||||||
timeo = jiffies + HZ;
|
|
||||||
|
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user