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 CCDC7C433F5 for ; Sun, 5 Dec 2021 16:57:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236080AbhLERA1 (ORCPT ); Sun, 5 Dec 2021 12:00:27 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39396 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236074AbhLERA0 (ORCPT ); Sun, 5 Dec 2021 12:00:26 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B6099C061714 for ; Sun, 5 Dec 2021 08:56:59 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 568176110F for ; Sun, 5 Dec 2021 16:56:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10B9FC341C5; Sun, 5 Dec 2021 16:56:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1638723418; bh=vk/lsHRZySG2Er1cjeslS1V3JQmoJK2eW/Yz0duLaJs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GxxO3pi8tzjZZQmg/FjAJpvAKdthpJ/6BamkHHt9YpbxIrQaR1ZFXCC7byas9eZ/w wUH7elfimhhh3zzzlMc8y+aF12TULoYlSfkM+m2qvy/V88ua0viT3XvKfNsU3xYYL8 CUECoXt2raXOi9MWpgna3kdgg+ctBExADGRmux71BjG3MZq9sc8z82oO0uVgHOo5tn uKroiBIrS5dmESYuqGfO+1+ZtRPVlVdnZimckDeBFk2UuCHjux+tklzI1I+x3AMWOE 68FE+0Vr8qSQqm+1S+UsmuJ2wQnSW+6DDUawGhxZuG6iy7Z+5NH2xORHKRcnk5Jibw QWAsiItanSOfg== From: Jonathan Cameron To: Lars-Peter Clausen , linux-iio@vger.kernel.org Cc: Andy Shevchenko , Jonathan Cameron , Peter Rosin Subject: [PATCH v3 10/12] iio:adc:envelope-detector: Switch from of headers to mod_devicetable.h Date: Sun, 5 Dec 2021 17:01:38 +0000 Message-Id: <20211205170140.2783914-11-jic23@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20211205170140.2783914-1-jic23@kernel.org> References: <20211205170140.2783914-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 There is nothing directly using of specific interfaces in this driver, so lets not include the headers. Signed-off-by: Jonathan Cameron Acked-by: Peter Rosin Reviewed-by: Andy Shevchenko --- drivers/iio/adc/envelope-detector.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/iio/adc/envelope-detector.c b/drivers/iio/adc/envelope-detector.c index d73eac36153f..e911c25d106d 100644 --- a/drivers/iio/adc/envelope-detector.c +++ b/drivers/iio/adc/envelope-detector.c @@ -31,14 +31,13 @@ #include #include #include +#include #include #include #include #include #include #include -#include -#include #include #include #include -- 2.34.1