From nobody Mon Apr 6 11:21:16 2026 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 C06AAC54EE9 for ; Thu, 8 Sep 2022 13:57:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232269AbiIHN5k (ORCPT ); Thu, 8 Sep 2022 09:57:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59940 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232291AbiIHN5D (ORCPT ); Thu, 8 Sep 2022 09:57:03 -0400 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B9118F8268; Thu, 8 Sep 2022 06:57:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1662645420; x=1694181420; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uCRdi2DaTdmSASZqdRQlPRT8IpkU0kzoXNk1axIiyWg=; b=O3TFkUrUM2q7X7QD8nQarIUsvU/Ow+89Hlm23DtRL7PMNlatQrcbzieZ 6dvNj7cl3x6KSZn7qOH5WKwpFCAK0dqFJxvHhPmp467ef9plB6WlOJBh1 a7oKsxzqE7DD4EHEQVui1+4qHn3T5KLZj1+mhI9UxIXOQtPeNh4hcEIyI aXumS7sOKxdQ/6s4MuxfVLWkRMR/8DWMojvPZWxXLC4qG3rw2b+ybMiz6 ydwqrfiSDWX7sg2rMqs7fSjX+4DlhgIIV7l7yn7YlnGRbl6z+Lna5yADe iQeQhAtXbxjQsnzJ+3PPXR4XzK+YeUSF2aneIzYgdYaGxAC7DhQokTqU2 Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10464"; a="297174057" X-IronPort-AV: E=Sophos;i="5.93,300,1654585200"; d="scan'208";a="297174057" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Sep 2022 06:56:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,300,1654585200"; d="scan'208";a="614895494" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga002.jf.intel.com with ESMTP; 08 Sep 2022 06:56:46 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 86C6D363; Thu, 8 Sep 2022 16:57:02 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , linux-kernel@vger.kernel.org, linux-pwm@vger.kernel.org Cc: Thierry Reding Subject: [PATCH v2 4/9] pwm: lpss: Include headers we are direct user of Date: Thu, 8 Sep 2022 16:56:53 +0300 Message-Id: <20220908135658.64463-5-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220908135658.64463-1-andriy.shevchenko@linux.intel.com> References: <20220908135658.64463-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" For the sake of integrity, include headers we are direct user of. While at it, replace device.h with a forward declaration and add missed struct pwm_lpss_boardinfo one. Signed-off-by: Andy Shevchenko --- drivers/pwm/pwm-lpss.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/pwm/pwm-lpss.h b/drivers/pwm/pwm-lpss.h index c344921b2cab..839622964b2a 100644 --- a/drivers/pwm/pwm-lpss.h +++ b/drivers/pwm/pwm-lpss.h @@ -10,11 +10,15 @@ #ifndef __PWM_LPSS_H #define __PWM_LPSS_H =20 -#include #include +#include =20 #define MAX_PWMS 4 =20 +struct device; + +struct pwm_lpss_boardinfo; + struct pwm_lpss_chip { struct pwm_chip chip; void __iomem *regs; --=20 2.35.1