From patchwork Fri Jun 11 17:13:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Cameron X-Patchwork-Id: 12316297 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=-19.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,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 E6D27C48BE0 for ; Fri, 11 Jun 2021 17:12:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D0313613F9 for ; Fri, 11 Jun 2021 17:12:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230186AbhFKROR (ORCPT ); Fri, 11 Jun 2021 13:14:17 -0400 Received: from mail.kernel.org ([198.145.29.99]:60590 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231448AbhFKROQ (ORCPT ); Fri, 11 Jun 2021 13:14:16 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id E042D613D3; Fri, 11 Jun 2021 17:12:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1623431538; bh=hl3Ok/tYQp59dkkTwxSpbiLqgXO2JvZYu3kH1tt6dd4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d+lDVrySOHr0SMTr5eVeUaVs8URjxYXp7cmYSMn0HrDht4YoTbqzSxRRitjyV7HpD /M4PW96nhKGr0J6p/FN7TLYRIMjh+w4BctraD4s+GalABoEqsJGXk5CO9cfj4Gq7oc KHxW7itua/6UtRP5e8WeSJFCB3TK8uEI+Q2UEr5RsEkJSMBuEIiv3IclRgjjU6bZCW WANKohsUlDhfZqgWYbVtAQkzp9TIOqu14+Hkaw3Bi5lra0WCtpvj0F4KOXCKBEzY5T pYO4MEm/3wu+IIbUbL/i1YzZzaszj2tjW3pwZKHpafDz/fjurEV3fynFpOmH/SDB5B 2/TkvBlf68PHw== From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Jonathan Cameron , Sean Nyekjaer Subject: [PATCH 06/12] iio:accel:fxls8962af: Add a few missing includes. Date: Fri, 11 Jun 2021 18:13:48 +0100 Message-Id: <20210611171355.202903-7-jic23@kernel.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210611171355.202903-1-jic23@kernel.org> References: <20210611171355.202903-1-jic23@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org From: Jonathan Cameron Based on consideration of the output of the include-what-you-use tool. Note that in this driver the main reason to do this is to ensure consistency across IIO. Signed-off-by: Jonathan Cameron Cc: Sean Nyekjaer Reviewed-by: Sean Nyekjaer --- drivers/iio/accel/fxls8962af-core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/iio/accel/fxls8962af-core.c b/drivers/iio/accel/fxls8962af-core.c index 078d87865fde..6882f082d581 100644 --- a/drivers/iio/accel/fxls8962af-core.c +++ b/drivers/iio/accel/fxls8962af-core.c @@ -15,16 +15,17 @@ #include #include #include +#include #include #include #include +#include #include #include #include #include #include -#include #include "fxls8962af.h"