From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E5E1BC4360C for ; Sat, 12 Oct 2019 10:51:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B953D2089C for ; Sat, 12 Oct 2019 10:51:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570877486; bh=l72/FHONvxqhpTbMY6sUWsK/q2CutSMbOel1ZNCX42o=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=KYRAIZVkh7NUVLE4tXYnJpm5Xf9syqf70anyZrLi9lGN2uu+Q0NTtgCFLVcWaKUOC tz7JfN2oV96JM/kyctzf4HycLDs7iCemLTq/pYYMoQ5ay1tl4bAAhw9SCu9cCdz9CO FZV8KJcVrk0wd+6bQEbmHSfRLS6BQTiEW5E3w4dY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728245AbfJLKv0 (ORCPT ); Sat, 12 Oct 2019 06:51:26 -0400 Received: from mail.kernel.org ([198.145.29.99]:34036 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726555AbfJLKv0 (ORCPT ); Sat, 12 Oct 2019 06:51:26 -0400 Received: from localhost (unknown [84.241.192.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0A8ED2089C; Sat, 12 Oct 2019 10:51:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570877484; bh=l72/FHONvxqhpTbMY6sUWsK/q2CutSMbOel1ZNCX42o=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=DfrEYV+dShwmaucSUduIUiM+Vmt7ptuLodMQMgxTIMWrt+w3TnJrgzhmsWo0EAWr7 NXnk++aT9DoD/01dLOhzzFv8fulb6Xhf1q46lYHp/9hITAD5RDW+M/hyFT3I+2onoP AO9oQgoAB926DTJK189wxrwB9R9ThDjYTsNQBqUM= Date: Sat, 12 Oct 2019 12:51:19 +0200 From: Greg KH To: Jonathan Cameron Cc: linux-iio@vger.kernel.org Subject: Re: [PULL] First set of IIO new device support etc for the 5.5 cycle. Message-ID: <20191012105119.GA2074969@kroah.com> References: <20191012102436.752a861d@archlinux> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20191012102436.752a861d@archlinux> User-Agent: Mutt/1.12.2 (2019-09-21) Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Sat, Oct 12, 2019 at 10:24:36AM +0100, Jonathan Cameron wrote: > The following changes since commit b73b93a2af3392b9b7b8ba7e818ee767499f9655: > > iio: adc: ad7192: Add sysfs ABI documentation (2019-09-08 10:34:49 +0100) > > are available in the Git repository at: > > https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-for-5.5a I'm getting build warnings in drivers/iio/imu/adis16400.c, is that to be expected? drivers/iio/imu/adis16400.c: In function ‘adis16334_get_freq’: drivers/iio/imu/adis16400.c:334:4: warning: ‘t’ may be used uninitialized in this function [-Wmaybe-uninitialized] 334 | t >>= ADIS16334_RATE_DIV_SHIFT; | ^ drivers/iio/imu/adis16400.c: In function ‘adis16400_get_freq’: drivers/iio/imu/adis16400.c:360:11: warning: ‘t’ may be used uninitialized in this function [-Wmaybe-uninitialized] 360 | uint16_t t; | ^ CC [M] drivers/iio/light/bh1750.o drivers/iio/imu/adis16400.c: In function ‘adis16400_read_raw’: drivers/iio/imu/adis16400.c:557:10: warning: ‘val16’ may be used uninitialized in this function [-Wmaybe-uninitialized] 557 | int16_t val16; | ^~~~~ drivers/iio/imu/adis16400.c: In function ‘adis16400_write_raw’: drivers/iio/imu/adis16400.c:424:14: warning: ‘val16’ may be used uninitialized in this function [-Wmaybe-uninitialized] 424 | (val16 & ~0x07) | i); | ~~~~~~~^~~~~~~~ drivers/iio/imu/adis16400.c:411:11: note: ‘val16’ was declared here 411 | uint16_t val16; | ^~~~~ Can you fix that up first? thanks, greg k-h