From nobody Mon Dec 29 18:27:01 2025 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 9F6ADC61D97 for ; Fri, 24 Nov 2023 20:03:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346131AbjKXUDL (ORCPT ); Fri, 24 Nov 2023 15:03:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57556 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346009AbjKXUDB (ORCPT ); Fri, 24 Nov 2023 15:03:01 -0500 Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1314910F0 for ; Fri, 24 Nov 2023 12:03:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1700856188; x=1732392188; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=aWAES+X/gzWAf5tameCWgEEuMqs70/3z8X4l0rA0DAY=; b=A6P2SMjIsyRusVozu3sTtKwbw4QgMTdu8ZivmCg6s6+tWf/IvjseAP50 v+fkygbd8pOarvowIHZV1OLcPWpSVlPz98YrgrguwxEYOx2tIUdxJss8C mvpHqnNZ8KDUOLAuw/341oYZUNxgbY5QQ4oQBgisK32lNryrrA9OiOg3Q r9mbBHBtm7bHXjorWJ31f8F15kH2B8Vgzi77P9sh9uxFQ6Q5i2qr7XtqJ W5xYb15h3k0ukc4+Fyit6QDtY5kCpqlGFgk/dUj0/hN9+uYmC5+jBvTW3 zXvsA7WFPRmM93eaSMd+zqs5gFjwcfSzijCoiQrZRz/n98e0PoOsy8By0 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10904"; a="391338134" X-IronPort-AV: E=Sophos;i="6.04,224,1695711600"; d="scan'208";a="391338134" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Nov 2023 12:03:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10904"; a="1014983741" X-IronPort-AV: E=Sophos;i="6.04,224,1695711600"; d="scan'208";a="1014983741" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga006.fm.intel.com with ESMTP; 24 Nov 2023 12:03:04 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id B2674387; Fri, 24 Nov 2023 22:03:03 +0200 (EET) From: Andy Shevchenko To: Andy Shevchenko , linux-kernel@vger.kernel.org Cc: Lee Jones Subject: [PATCH v1 3/5] mfd: intel-lpss: Adjust header inclusions Date: Fri, 24 Nov 2023 21:31:26 +0200 Message-ID: <20231124200258.3682979-4-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.43.0.rc1.1.gbec44491f096 In-Reply-To: <20231124200258.3682979-1-andriy.shevchenko@linux.intel.com> References: <20231124200258.3682979-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Adjust header inclusions to avoid "proxy" headers and explicitly include what we are using. Signed-off-by: Andy Shevchenko --- drivers/mfd/intel-lpss-acpi.c | 6 +++++- drivers/mfd/intel-lpss-pci.c | 8 ++++++-- drivers/mfd/intel-lpss.c | 17 ++++++++++++----- 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/drivers/mfd/intel-lpss-acpi.c b/drivers/mfd/intel-lpss-acpi.c index bba208235754..e4a62cc02cfc 100644 --- a/drivers/mfd/intel-lpss-acpi.c +++ b/drivers/mfd/intel-lpss-acpi.c @@ -8,15 +8,19 @@ * Mika Westerberg */ =20 +#include +#include #include -#include #include #include #include #include #include + #include =20 +#include + #include "intel-lpss.h" =20 static const struct property_entry spt_spi_properties[] =3D { diff --git a/drivers/mfd/intel-lpss-pci.c b/drivers/mfd/intel-lpss-pci.c index 94042bfe7dbf..bc15379afe3b 100644 --- a/drivers/mfd/intel-lpss-pci.c +++ b/drivers/mfd/intel-lpss-pci.c @@ -8,14 +8,18 @@ * Mika Westerberg */ =20 -#include -#include +#include +#include +#include #include #include #include #include + #include =20 +#include + #include "intel-lpss.h" =20 /* Some DSDTs have an unused GEXP ACPI device conflicting with I2C4 resour= ces */ diff --git a/drivers/mfd/intel-lpss.c b/drivers/mfd/intel-lpss.c index bbd65da46db6..79ea5e2ad0a6 100644 --- a/drivers/mfd/intel-lpss.c +++ b/drivers/mfd/intel-lpss.c @@ -10,26 +10,33 @@ * Jarkko Nikula */ =20 -#include +#include +#include #include +#include #include #include +#include +#include +#include #include #include #include -#include -#include #include +#include #include #include -#include -#include +#include +#include + #include =20 #include =20 #include "intel-lpss.h" =20 +struct dentry; + #define LPSS_DEV_OFFSET 0x000 #define LPSS_DEV_SIZE 0x200 #define LPSS_PRIV_OFFSET 0x200 --=20 2.43.0.rc1.1.gbec44491f096