From patchwork Sun Feb 6 19:03:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Cameron X-Patchwork-Id: 12736657 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 3F1D1C433F5 for ; Sun, 6 Feb 2022 18:57:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242266AbiBFS5t (ORCPT ); Sun, 6 Feb 2022 13:57:49 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32968 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244837AbiBFS5q (ORCPT ); Sun, 6 Feb 2022 13:57:46 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F2CC6C0401C0 for ; Sun, 6 Feb 2022 10:57:45 -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 AFB3FB80E66 for ; Sun, 6 Feb 2022 18:57:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 80FA7C340F0; Sun, 6 Feb 2022 18:57:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1644173863; bh=j4K18/dNuLQEFTpn74M+mWho4KEmR0J54ZLSWv8m1BQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ROqtP017VpvDIvpig+KgRbJoGlqCUIR+ssQLyPRCs2V8Jzrb48KJSCwYPq05/p1Z9 WiT0SYWlVDREL1DVbJ1WrpJOyjSPkFPpBFHJNxdNrovazj25KWbvNIEkzT2gGwZpBj G8+T/wyjCJ3E4a3B2gI8WqUJ/hNHWZCBnzgOrPD8LjITRFsHk3v35jhgPLUfxzf4DR M0ZpgSlKcsU39Cwf1qTg3HQOYGFQ5W3TvRr6SUBf8WZzHbPAR0gtMl6KxzjylUk0Mj odHheAbUtZKkh/K87VOXtXOPIYTyT37wqan6zWqmo6Yl0zpfH9WYqZqkVYKSehELgi QaEwHG6RWKJnA== From: Jonathan Cameron To: linux-iio@vger.kernel.org, Marcelo Schmitt Cc: Hennerich@vger.kernel.org, Michael , Nuno Sa , lars@metafoo.de, Jonathan Cameron Subject: [PATCH v3 11/20] staging:iio:adc:ad7280a: Cleanup includes Date: Sun, 6 Feb 2022 19:03:19 +0000 Message-Id: <20220206190328.333093-12-jic23@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220206190328.333093-1-jic23@kernel.org> References: <20220206190328.333093-1-jic23@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org From: Jonathan Cameron Drop used includes, add a few missing ones and reorder. The include-what-you-use tool output was considered in making this change. Signed-off-by: Jonathan Cameron Reviewed-by: Marcelo Schmitt --- drivers/staging/iio/adc/ad7280a.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c index 2ba9379ce0a7..d408974c848c 100644 --- a/drivers/staging/iio/adc/ad7280a.c +++ b/drivers/staging/iio/adc/ad7280a.c @@ -5,21 +5,23 @@ * Copyright 2011 Analog Devices Inc. */ +#include +#include #include +#include #include +#include +#include #include +#include +#include +#include #include #include #include -#include -#include -#include -#include -#include -#include -#include #include +#include #include "ad7280a.h"