]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
staging: pi433: Move limit check to switch default to kill warning
authorGeert Uytterhoeven <geert@linux-m68k.org>
Wed, 6 Sep 2017 15:40:25 +0000 (17:40 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Sep 2017 10:25:31 +0000 (12:25 +0200)
commitb72703e26b9478da531144ce5c4552dd22f1103d
treefa72c43bc8b5390668c8f04c5044fed16cabcfae
parente1bf28868ab0bfd1fc73dd8d5e642d88456c30e9
staging: pi433: Move limit check to switch default to kill warning

With gcc-4.1.2:

    drivers/staging/pi433/rf69.c: In function ‘rf69_set_dio_mapping’:
    drivers/staging/pi433/rf69.c:566: warning: ‘regaddr’ may be used uninitialized in this function
    drivers/staging/pi433/rf69.c:565: warning: ‘shift’ may be used uninitialized in this function
    drivers/staging/pi433/rf69.c:564: warning: ‘mask’ may be used uninitialized in this function

While this is a false positive, it can easily be fixed by moving the
limit check into the "default" case of the switch statement.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/pi433/rf69.c