From patchwork Mon Oct 16 16:10:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 734834 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 76A65CDB465 for ; Mon, 16 Oct 2023 16:11:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232389AbjJPQLS (ORCPT ); Mon, 16 Oct 2023 12:11:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43236 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234026AbjJPQLF (ORCPT ); Mon, 16 Oct 2023 12:11:05 -0400 Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2C78AD56; Mon, 16 Oct 2023 09:10:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1697472658; x=1729008658; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=YUkxCSHEq/3rOrfuT0Fg4DI7Hj9/49mwADVgWbNCxXM=; b=cVj697GdHtSBBYSmilaMSM9/h6D4j+erxXqGAXQmtopyenkoDo2pzX9/ J+0HhVJ1anSDYgaqvoz2/98mKksvXyzpIcjs9GHt+zeaUgBHcAXRjleI7 DsIpUMu1TRka2M7uAUAAFk7cwE65ty1cNRGRrx1xZ1WM0InPlWiFzpaKM 1xQI+abtg4UAy54tdOrjPEb5BavkyLojTzArkqwrvVidp2HYSEhtIedTF JcL50o5lhO38Q7BL+SGKHVSyMF3cVBtmwJ2+S31YKVMY/AJeBW8o2oGA9 K0vdnlyuQlnkRQYEJZaiysr9GPZlao5/Vaaq4hF13Q0oq1903IUCVGoYQ A==; X-IronPort-AV: E=McAfee;i="6600,9927,10865"; a="384440997" X-IronPort-AV: E=Sophos;i="6.03,229,1694761200"; d="scan'208";a="384440997" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Oct 2023 09:10:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10865"; a="790856636" X-IronPort-AV: E=Sophos;i="6.03,229,1694761200"; d="scan'208";a="790856636" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga001.jf.intel.com with ESMTP; 16 Oct 2023 09:10:13 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 48A5EA46; Mon, 16 Oct 2023 19:10:09 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , linux-leds@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Pavel Machek , Lee Jones Subject: [PATCH v1 6/6] leds: gpio: Update headers Date: Mon, 16 Oct 2023 19:10:05 +0300 Message-Id: <20231016161005.1471768-6-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.40.0.1.gaa8946217a0b In-Reply-To: <20231016161005.1471768-1-andriy.shevchenko@linux.intel.com> References: <20231016161005.1471768-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-leds@vger.kernel.org Include headers which we are direct users of, no need to have proxies. Signed-off-by: Andy Shevchenko --- drivers/leds/leds-gpio.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index d6e8298ffb3e..710c319ad312 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -6,17 +6,21 @@ * Raphael Assenat * Copyright (C) 2008 Freescale Semiconductor, Inc. */ +#include +#include #include #include #include -#include #include #include #include +#include #include #include #include #include +#include + #include "leds.h" struct gpio_led_data {