Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 911b04d6 authored by Jeff Becker's avatar Jeff Becker Committed by Greg Kroah-Hartman
Browse files

STAGING/SPEAKUP: Fix "expression using sizeof bool" warnings



Fix "warning: expression using sizeof bool" messages caught by sparse.
Resending directly to SPEAKUP maintainers.

Signed-off-by: default avatarJeff Becker <Jeffrey.C.Becker@nasa.gov>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d86b4a71
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@
#define PRESSED 1
#define RELEASED 0

static DEFINE_PER_CPU(bool, reporting_keystroke);
static DEFINE_PER_CPU(int, reporting_keystroke);

static struct input_dev *virt_keyboard;