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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C82A4C433F5 for ; Sun, 3 Oct 2021 15:29:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AFCCB61A38 for ; Sun, 3 Oct 2021 15:29:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231143AbhJCPbQ (ORCPT ); Sun, 3 Oct 2021 11:31:16 -0400 Received: from mail.kernel.org ([198.145.29.99]:34496 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231146AbhJCPbO (ORCPT ); Sun, 3 Oct 2021 11:31:14 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 51D2161A4F; Sun, 3 Oct 2021 15:29:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1633274967; bh=z6hCbftCu31mLWu+lXRkbD6/zGsZjf1CcFBpcGFhZjU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uocifEoN1VO1OwHV4D0/ibDZD8GWByVYJuKqfjU9LaQiYINyzjn65Wg4InIPYaZzr tOI+ScMOjSNKr2fdWast4KhOJODAUlT/vLwvPkvx8WvkgI8p82UZweC9+Cjkz92xuv fpFhaoC1vIsutNC0qLSNHyzbjjCSfCi9heY3lJJFEsr3qjGvtGhwpD6haPUaoq1V7a D934aaurkKDb45182Wnr8WKfcldnu/79OTg8iDOfX0r1Jo2yA6PsDf/zV/MZKc3zSE I4o5xZX9lx1Rk2ebgP4W5XWnCXYocivRS2/8IIdn37Jyr9yRkRgmTOkItYYy30BPiV vsBYAvNQHB5tg== From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Andy Shevchenko , Jonathan Cameron Subject: [RFC PATCH 11/11] iio: kfifo-buf.c: Bring includes up to date. Date: Sun, 3 Oct 2021 16:33:06 +0100 Message-Id: <20211003153306.391766-12-jic23@kernel.org> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20211003153306.391766-1-jic23@kernel.org> References: <20211003153306.391766-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 Based on manual inspection of the suggestions from the include-what-you-use tool. Signed-off-by: Jonathan Cameron --- drivers/iio/buffer/kfifo_buf.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/drivers/iio/buffer/kfifo_buf.c b/drivers/iio/buffer/kfifo_buf.c index 516eb3465de1..9564fcbb8979 100644 --- a/drivers/iio/buffer/kfifo_buf.c +++ b/drivers/iio/buffer/kfifo_buf.c @@ -1,17 +1,20 @@ // SPDX-License-Identifier: GPL-2.0-only -#include -#include -#include #include -#include +#include +#include +#include #include +#include +#include #include +#include + #include #include #include #include -#include -#include + +struct attribute; struct iio_kfifo { struct iio_buffer buffer; -- 2.33.0