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 5BD8DC53210 for ; Sun, 8 Jan 2023 12:00:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229483AbjAHMAW (ORCPT ); Sun, 8 Jan 2023 07:00:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51260 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232624AbjAHMAV (ORCPT ); Sun, 8 Jan 2023 07:00:21 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 16E76F004; Sun, 8 Jan 2023 04:00:20 -0800 (PST) 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 ams.source.kernel.org (Postfix) with ESMTPS id C524DB802C5; Sun, 8 Jan 2023 12:00:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60EB1C433D2; Sun, 8 Jan 2023 12:00:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1673179217; bh=48TuCSjgDFgkNA8+RuQuEc67VKKKCmCOOKmdeIkUUL4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=Ud0cc/A14kxvIlkbqiile2V+29YPcunjBKfPtmULAMpe0NhembY5fMggAUVU84nCi kxgTTGumN20LwVEmwTisNCIDFUOiG+VNQzM+Kbs+/luWFW1qbLL2EOMGSql9mECPmn 4T8bIe6y6Z7Q0557zhLNJfqoB6ZfKD7pULl+8RagDdFW9wMvP01Aw6QpTZFmsxsoRK fx6hQ9wIRunQ0U7mIoy9kWJH/Z9GCUHTFZoUN3MK/8BBBoPgIZY8ONklracsnhttLl SRopLc6/pHbUkN1unxkBDJS0fZLcvpOhUX6AmailzSjphOdUK/3jJoAXV56rUMvCDc iit2tt4eEEQcg== Date: Sun, 8 Jan 2023 12:13:45 +0000 From: Jonathan Cameron To: Andy Shevchenko Cc: Ibrahim Tilki , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, Lars-Peter Clausen Subject: Re: [PATCH v1 1/1] iio: adc: max11410: Use asm intead of asm-generic Message-ID: <20230108121345.7fb3b6f2@jic23-huawei> In-Reply-To: <20230103144903.39905-1-andriy.shevchenko@linux.intel.com> References: <20230103144903.39905-1-andriy.shevchenko@linux.intel.com> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.36; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Tue, 3 Jan 2023 16:49:03 +0200 Andy Shevchenko wrote: > There is no point to specify asm-generic for the unaligned.h. > Drop the 'generic' suffix and move the inclusion to be after > the non-IIO linux/* ones. > > Signed-off-by: Andy Shevchenko Applied. Thanks, Jonathan > --- > drivers/iio/adc/max11410.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/max11410.c b/drivers/iio/adc/max11410.c > index fdc9f03135b5..b74b689ee7de 100644 > --- a/drivers/iio/adc/max11410.c > +++ b/drivers/iio/adc/max11410.c > @@ -4,7 +4,6 @@ > * > * Copyright 2022 Analog Devices Inc. > */ > -#include > #include > #include > #include > @@ -16,6 +15,8 @@ > #include > #include > > +#include > + > #include > #include > #include