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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DAE1FC433FE for ; Sun, 8 May 2022 19:12:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230108AbiEHTQB (ORCPT ); Sun, 8 May 2022 15:16:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41130 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245601AbiEHSDl (ORCPT ); Sun, 8 May 2022 14:03:41 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0C98C5FBC for ; Sun, 8 May 2022 10:59:51 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 94F896129B for ; Sun, 8 May 2022 17:59:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D15A5C385A4; Sun, 8 May 2022 17:59:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652032790; bh=Ro/0sJtpPddUt4j3C+sOPGiH3GXgP/ZIqTow1LTGIbM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JySX9uaeSj6qUpT3a+jOSlHLCJSmBHW3NrpOUCt80JAWBakNknRr2GZkxj7N6cvtw xG86P9utrVtI04Z2v2svJ82ZURyfkWsU6Jr8UwVNYLQshrx9szHNnMI4VIvjfXayeo 2BIAliNGq9w4mCH6tbyOia0LuSbGtK9gEOoAD7YY6OVorGdNmY8lVzaVjj1hwWRFwj 8MCgU2o2TJxUWLHX5ibqV7w0Q50lMrw5d+EBhHwao2BLe4PfLgpXbBd/sSazgII6tC +d+ei4NVrLjBXEWR88nQFt+exU3Efebpk8suq5nMTyK+VTEGxSJ7SKuxdFHAcyInLE R3O7WqR3trRgQ== From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Alexandru Lazar , Akinobu Mita , Alexandru Tachici , Antoniu Miclaus , Charles-Antoine Couret , Cosmin Tanislav , David Lechner , Ivan Mikhaylov , Jacopo Mondi , Jean-Baptiste Maneyrol , Lars-Peter Clausen , Marcelo Schmitt , =?UTF-8?q?M=C3=A5rten=20Lindahl?= , Matt Ranostay , Matt Ranostay , Michael Hennerich , Michael Welling , Mugilraj Dhavachelvan , Navin Sankar Velliangiri , =?UTF-8?q?Nuno=20S=C3=A1?= , Paul Cercueil , Phil Reid , Puranjay Mohan , Ricardo Ribalda , Robert Jones , Rui Miguel Silva , Sean Nyekjaer , Tomas Melin , Tomislav Denis , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , Jonathan Cameron Subject: [PATCH v2 85/92] iio: pressure: dlhl60d: Drop unnecessary alignment forcing. Date: Sun, 8 May 2022 18:57:05 +0100 Message-Id: <20220508175712.647246-86-jic23@kernel.org> X-Mailer: git-send-email 2.36.0 In-Reply-To: <20220508175712.647246-1-jic23@kernel.org> References: <20220508175712.647246-1-jic23@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org From: Jonathan Cameron I2C doesn't use the buffers directly for DMA so there is no need to enforce alignment. Signed-off-by: Jonathan Cameron Cc: Tomislav Denis Acked-by: Nuno Sá --- drivers/iio/pressure/dlhl60d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/pressure/dlhl60d.c b/drivers/iio/pressure/dlhl60d.c index ade73267d5eb..5f6bb3603a8b 100644 --- a/drivers/iio/pressure/dlhl60d.c +++ b/drivers/iio/pressure/dlhl60d.c @@ -47,7 +47,7 @@ struct dlh_state { struct dlh_info info; bool use_interrupt; struct completion completion; - u8 rx_buf[DLH_NUM_READ_BYTES] ____cacheline_aligned; + u8 rx_buf[DLH_NUM_READ_BYTES]; }; static struct dlh_info dlh_info_tbl[] = { -- 2.36.0