[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1583714300-19085-5-git-send-email-Anson.Huang@nxp.com>
Date: Mon, 9 Mar 2020 08:38:18 +0800
From: Anson Huang <Anson.Huang@....com>
To: shawnguo@...nel.org, s.hauer@...gutronix.de, kernel@...gutronix.de,
festevam@...il.com, dmitry.torokhov@...il.com,
a.zummo@...ertech.it, alexandre.belloni@...tlin.com,
rui.zhang@...el.com, daniel.lezcano@...aro.org,
amit.kucheria@...durent.com, wim@...ux-watchdog.org,
linux@...ck-us.net, daniel.baluta@....com,
gregkh@...uxfoundation.org, linux@...pel-privat.de,
tglx@...utronix.de, m.felsch@...gutronix.de,
andriy.shevchenko@...ux.intel.com, arnd@...db.de,
ronald@...ovation.ch, krzk@...nel.org, robh@...nel.org,
leonard.crestez@....com, aisheng.dong@....com,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
linux-input@...r.kernel.org, linux-rtc@...r.kernel.org,
linux-pm@...r.kernel.org, linux-watchdog@...r.kernel.org
Cc: Linux-imx@....com
Subject: [PATCH V3 5/7] input: keyboard: imx_sc_key: Fix build warning for !CONFIG_IMX_SCU case
Fix below build warning when COMPILE_TEST is enabled while IMX_SCU is not:
drivers/input/keyboard/imx_sc_key.c: In function ‘imx_sc_check_for_events’:
drivers/input/keyboard/imx_sc_key.c:87:27: warning: ‘msg.state’ is used
uninitialized in this function [-Wuninitialized]
state = (bool)(msg.state & 0xff);
^
AR drivers/input/keyboard/built-in.a
Signed-off-by: Anson Huang <Anson.Huang@....com>
---
No change.
---
drivers/input/keyboard/imx_sc_key.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/keyboard/imx_sc_key.c b/drivers/input/keyboard/imx_sc_key.c
index 2672fd4..1b55348 100644
--- a/drivers/input/keyboard/imx_sc_key.c
+++ b/drivers/input/keyboard/imx_sc_key.c
@@ -69,6 +69,7 @@ static void imx_sc_check_for_events(struct work_struct *work)
hdr->func = IMX_SC_MISC_FUNC_GET_BUTTON_STATUS;
hdr->size = 1;
+ msg.state = 0;
error = imx_scu_call_rpc(priv->key_ipc_handle, &msg, true);
if (error) {
dev_err(&input->dev, "read imx sc key failed, error %d\n", error);
--
2.7.4
Powered by blists - more mailing lists