Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp365726imm; Thu, 13 Sep 2018 00:53:51 -0700 (PDT) X-Google-Smtp-Source: ANB0VdaXgwNeJfMXy6a9Cz8oQPjVkXE8aami9GolRmkgX7QCcrHfBs90awQdRVRwA2SP1/S1yt1i X-Received: by 2002:a62:f208:: with SMTP id m8-v6mr6134832pfh.222.1536825231583; Thu, 13 Sep 2018 00:53:51 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536825231; cv=none; d=google.com; s=arc-20160816; b=y3EPVUkOFAEu7gCBNSpu7IPy6SSyCWyMZefm7vsGas7iPzzUWW9sFPLDOzhjRTCWD2 zi3eVoTQHboPt6mlkZ1ybqsIxKyWGJB7lpLwzCmyVNdDfc9GhbyRi88c9oFQ4Jf3BjMI FLYGnw00dxsR5R0qPn0jjCDGq2/966ScRgW5nYXbk+ORRlhz+STSbYJMjhHUFhcRKNh1 LryPRl43KXaoTexoYI90HS1oZ/MpSkZWL/4opP7TAwQGo3BwcCIRtS//oFfTi+S2Q0pg iiA9usm7lJYtkPP3ae/uBSPBKzY0+hQwf9gdkbZb3Nz0hJsvdqJL4irCH8Moiw5qPh7R 8E9g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=Ba19gIhUk9esGLZBMXoag7s/pL8j7Q3HMBLuSqZOvoU=; b=zFUExfV6hfnk5OMSgJ+GIWw1osefNxVISgTwx0emsnopjjkYYwuygq6mP/oIwoGwLI DPZtmQAybRwhv7Kqo48DixaIABIbn9Rkiu7S6bofWoeRUR5K04CjTIRypXLsTK0kAYcZ 6iLzXKF9qVEkpo/vKeO341RtgPG11IZgJZ+P7RmqvioJBQPnEEKdOvFI/A4Dh0vFpZpb sNUGa5LSL2OEB6XhIw6LPoSdMDzuLjFX1kol/naTz7IHk17+wu4t7c4sJjF6RQlzxAeg zrdTyfw4LtRCtVssfo/eAokwwW7PRm6k8FtjU1dDdSpoKrzClYUD14r4r/GqtoO+hthJ c0EQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y3-v6si3636984pgi.338.2018.09.13.00.53.35; Thu, 13 Sep 2018 00:53:51 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726797AbeIMNBs (ORCPT + 99 others); Thu, 13 Sep 2018 09:01:48 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:60871 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726570AbeIMNBs (ORCPT ); Thu, 13 Sep 2018 09:01:48 -0400 Received: from DGGEMS414-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 6593D723C3CCD; Thu, 13 Sep 2018 15:53:26 +0800 (CST) Received: from linux-ibm.site (10.175.102.37) by DGGEMS414-HUB.china.huawei.com (10.3.19.214) with Microsoft SMTP Server id 14.3.399.0; Thu, 13 Sep 2018 15:53:25 +0800 From: zhong jiang To: , CC: , Subject: [PATCH v2] HID: logitech: fix a used uninitialized GCC warning Date: Thu, 13 Sep 2018 15:41:10 +0800 Message-ID: <1536824470-36659-1-git-send-email-zhongjiang@huawei.com> X-Mailer: git-send-email 1.7.12.4 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Originating-IP: [10.175.102.37] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix the following compile warning: drivers/hid/hid-logitech-hidpp.c: In function 'hi_res_scroll_enable': drivers/hid/hid-logitech-hidpp.c:2714:54: warning: 'multiplier' may be used uninitialized in this function [-Wmaybe-uninitialized] hidpp->vertical_wheel_counter.resolution_multiplier = multiplier; Signed-off-by: zhong jiang --- v1->v2: According to Benjamin's suggestion, To initialize the value and remove the duplicated assignement. drivers/hid/hid-logitech-hidpp.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c index 5f0c080..f012808 100644 --- a/drivers/hid/hid-logitech-hidpp.c +++ b/drivers/hid/hid-logitech-hidpp.c @@ -1231,7 +1231,6 @@ static int hidpp_hrw_get_wheel_capability(struct hidpp_device *hidpp, *multiplier = response.fap.params[0]; return 0; return_default: - *multiplier = 8; hid_warn(hidpp->hid_dev, "Couldn't get wheel multiplier (error %d), assuming %d.\n", ret, *multiplier); @@ -2696,7 +2695,7 @@ static int hi_res_scroll_look_up_microns(__u32 product_id) static int hi_res_scroll_enable(struct hidpp_device *hidpp) { int ret; - u8 multiplier; + u8 multiplier = 8; if (hidpp->quirks & HIDPP_QUIRK_HI_RES_SCROLL_X2121) { ret = hidpp_hrw_set_wheel_mode(hidpp, false, true, false); @@ -2704,10 +2703,9 @@ static int hi_res_scroll_enable(struct hidpp_device *hidpp) } else if (hidpp->quirks & HIDPP_QUIRK_HI_RES_SCROLL_X2120) { ret = hidpp_hrs_set_highres_scrolling_mode(hidpp, true, &multiplier); - } else /* if (hidpp->quirks & HIDPP_QUIRK_HI_RES_SCROLL_1P0) */ { + } else /* if (hidpp->quirks & HIDPP_QUIRK_HI_RES_SCROLL_1P0) */ ret = hidpp10_enable_scrolling_acceleration(hidpp); - multiplier = 8; - } + if (ret) return ret; -- 1.7.12.4