Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp728950pxv; Thu, 24 Jun 2021 19:16:31 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxMLVoFf/+5vwxQAJM90AVs9+QwCTKcNbFvF0ALEqQBmhZ2g7czkF6rmpjHbzBbbSwynrXQ X-Received: by 2002:a17:906:2608:: with SMTP id h8mr8098523ejc.380.1624587390914; Thu, 24 Jun 2021 19:16:30 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1624587390; cv=none; d=google.com; s=arc-20160816; b=Zr9s/yNHgDoaqbeHFb0pH+A6xajroagwxbJnVMsfpZef0WJsbn9Ze4EQrGai9I6j6C KqhXceW8ciBxz9v6fJBenT0bWFvcAlsowe78xt4onEddPB++lJICJ3HBy9GYTZh5P1jx qDBmhV5e1MEKMRrPNgZIDlLtDmdwpbRziBhbtyrXqXVP9Meks5sCZxGudRdwFZnoqZVE Gg3riTenJz9ukINZhkxTWj2vUY6+3TLI1s+9G25sQCa1ufdmMr0+agaqzpdTRS8AeVZ1 EcYsucTPD2KEBvDItAQlnnzW1lG8NnC4RzoYWrqnVqu0u7v2e5DdT9oanGDsilkCUbhW WqmQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=vNTblVxVN8oM/4gXY22ov9uJQgqNxyCrQNkKvQDbono=; b=ySav33Gt1DCyKPQTZNShqJYrQ6IrFpAv6oeJ3ugOTdePnxzR4+VEebp+M0UHywVFVc mFFdFwZ1luHVS+jm5YztOBHKJ8+DduMcwcMxtC4WCQ5ZbfhrFjI6Mn/67CrsLm4O7MCD xKMBJcVYhMnMmvuM/vdscbFX0/ofNqO9MJoXVKevcR3KPRJAjPq5Ev/UPgYRUI1Qgkn8 eNi2PchLPf1FkCmCT1wmpqIIDD9vWbDVSky+2sZxQhU+tzBp3GukF0SoGym7+vTIcGvb 4z0sFIdm6brsy9bgNtvFavCiL95+3f5rsbirvpOEW0r+9dUsJ4aclSYtROj000bFDwEu RwPw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id t23si5348873ejs.156.2021.06.24.19.16.04; Thu, 24 Jun 2021 19:16:30 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232996AbhFYCQp (ORCPT + 99 others); Thu, 24 Jun 2021 22:16:45 -0400 Received: from m.b4.vu ([203.16.231.148]:53408 "EHLO m.b4.vu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232917AbhFYCQn (ORCPT ); Thu, 24 Jun 2021 22:16:43 -0400 X-Greylist: delayed 394 seconds by postgrey-1.27 at vger.kernel.org; Thu, 24 Jun 2021 22:16:43 EDT Received: by m.b4.vu (Postfix, from userid 1000) id 4094561E5F02; Fri, 25 Jun 2021 11:37:48 +0930 (ACST) Date: Fri, 25 Jun 2021 11:37:48 +0930 From: "Geoffrey D. Bennett" To: Nathan Chancellor Cc: Jaroslav Kysela , Takashi Iwai , Nick Desaulniers , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, clang-built-linux@googlegroups.com Subject: Re: [PATCH] ALSA: usb-audio: scarlett2: Fix for loop increment in scarlett2_usb_get_config Message-ID: <20210625020748.GA21766@m.b4.vu> References: <20210624212048.1356136-1-nathan@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210624212048.1356136-1-nathan@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 24, 2021 at 02:20:48PM -0700, Nathan Chancellor wrote: > Clang warns: > > sound/usb/mixer_scarlett_gen2.c:1189:32: warning: expression result > unused [-Wunused-value] > for (i = 0; i < count; i++, (u16 *)buf++) > ^ ~~~~~ > 1 warning generated. > > It appears the intention was to cast the void pointer to a u16 pointer > so that the data could be iterated through like an array of u16 values. > However, the cast happens after the increment because a cast is an > rvalue, whereas the post-increment operator only works on lvalues, so > the loop does not iterate as expected. > > Replace the post-increment shorthand with the full expression so the > cast can be added in the right place and the look works as expected. look -> loop > Fixes: ac34df733d2d ("ALSA: usb-audio: scarlett2: Update get_config to do endian conversion") > Link: https://github.com/ClangBuiltLinux/linux/issues/1408 > Signed-off-by: Nathan Chancellor > --- > sound/usb/mixer_scarlett_gen2.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/usb/mixer_scarlett_gen2.c b/sound/usb/mixer_scarlett_gen2.c > index fcba682cd422..c20c7f1ddc50 100644 > --- a/sound/usb/mixer_scarlett_gen2.c > +++ b/sound/usb/mixer_scarlett_gen2.c > @@ -1186,7 +1186,7 @@ static int scarlett2_usb_get_config( > if (err < 0) > return err; > if (size == 2) > - for (i = 0; i < count; i++, (u16 *)buf++) > + for (i = 0; i < count; i++, buf = (u16 *)buf + 1) > *(u16 *)buf = le16_to_cpu(*(__le16 *)buf); > return 0; > } Thanks Nathan! FYI: although incorrect, this caused no bug as there is not yet any case where count > 1. Acked-by: Geoffrey D. Bennett