]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/commit
staging: comedi: adl_pci6208: remove redundant initialization of 'val'
authorColin Ian King <colin.king@canonical.com>
Mon, 12 Mar 2018 23:36:05 +0000 (23:36 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Mar 2018 11:57:06 +0000 (12:57 +0100)
commitb8461ff7747416dca950aad43415f214cfcdbfa3
tree6cdc067b086c41b74fcfde1ecd2dae85bfc68814
parent8b6f053790d94cceb323c2754fcd69c1286778b8
staging: comedi: adl_pci6208: remove redundant initialization of 'val'

Variable 'val' is initialized with a value that is never read, it is
updated with a new value again after intitialization. Remove the
redundant initialization and move the declaration and assignment into
the scope of the for-loop.

Cleans up clang warning:
drivers/staging/comedi/drivers/adl_pci6208.c:61:15: warning: Value
stored to 'val' during its initialization is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/adl_pci6208.c