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=-14.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 5DE66C43469 for ; Sun, 20 Sep 2020 11:28:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 17C56235F9 for ; Sun, 20 Sep 2020 11:28:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600601314; bh=z73AgK2yfgNYXkFZdruydRBLaEMHDZNllP71Srw8ugY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=tuEq2CVfMq3RiI90iRUPo0GYBiDqKWlUC1XBFQ5qMEuNjFHxu4KatwzrfLmy9Ftyy h1ecEvYszJTpWtP8HhVZ7yllt4zkbfk/bXcTltkwRxO3Ii6Zje15IWzEyAZMCtxGIJ fh3ZjxlF5JDgVG2p0BDOahdKntAxtF4YxqTXsYGg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726314AbgITL2d (ORCPT ); Sun, 20 Sep 2020 07:28:33 -0400 Received: from mail.kernel.org ([198.145.29.99]:39516 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726285AbgITL2d (ORCPT ); Sun, 20 Sep 2020 07:28:33 -0400 Received: from localhost.localdomain (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2C9A820EDD; Sun, 20 Sep 2020 11:28:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600601313; bh=z73AgK2yfgNYXkFZdruydRBLaEMHDZNllP71Srw8ugY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZZOirp5c4ZFjiY1uyJESkNFD+8++UcVihYOid3PIqc/UGJWA2HYyZykVtnm6Lk/cE QyIDNeOuMi8SB/6/MK4AFDlY5D97mvdJdZvRNiCZ5ScY5bX2pifCQdM/HXBDkNr26q fh6HR4RVYcLf/Hd2XMnPw+VmloMDS1TM/ZmLNd1k= From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Andy Shevchenko , Jonathan Cameron , Dan Murphy Subject: [PATCH v4 7/8] iio:adc:ti-ads124s08: Fix buffer being too long. Date: Sun, 20 Sep 2020 12:27:41 +0100 Message-Id: <20200920112742.170751-8-jic23@kernel.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200920112742.170751-1-jic23@kernel.org> References: <20200920112742.170751-1-jic23@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org From: Jonathan Cameron The buffer is expressed as a u32 array, yet the extra space for the s64 timestamp was expressed as sizeof(s64)/sizeof(u16). This will result in 2 extra u32 elements. Fix by dividing by sizeof(u32). Fixes: e717f8c6dfec ("iio: adc: Add the TI ads124s08 ADC code") Cc: Dan Murphy Signed-off-by: Jonathan Cameron --- v4: New patch drivers/iio/adc/ti-ads124s08.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/adc/ti-ads124s08.c b/drivers/iio/adc/ti-ads124s08.c index 4b4fbe33930c..eff4f9a9898e 100644 --- a/drivers/iio/adc/ti-ads124s08.c +++ b/drivers/iio/adc/ti-ads124s08.c @@ -269,7 +269,7 @@ static irqreturn_t ads124s_trigger_handler(int irq, void *p) struct iio_poll_func *pf = p; struct iio_dev *indio_dev = pf->indio_dev; struct ads124s_private *priv = iio_priv(indio_dev); - u32 buffer[ADS124S08_MAX_CHANNELS + sizeof(s64)/sizeof(u16)]; + u32 buffer[ADS124S08_MAX_CHANNELS + sizeof(s64)/sizeof(u32)]; int scan_index, j = 0; int ret; -- 2.28.0