From patchwork Wed Jan 25 20:10:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 646770 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 28483C54EED for ; Wed, 25 Jan 2023 20:11:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236329AbjAYULX (ORCPT ); Wed, 25 Jan 2023 15:11:23 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45930 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236366AbjAYULO (ORCPT ); Wed, 25 Jan 2023 15:11:14 -0500 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2C6DC5D11D; Wed, 25 Jan 2023 12:10:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1674677448; x=1706213448; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=G7N++5tY9N8FPCWRBFWAEI9Nl1zncmIAaWLLx8WidN8=; b=bZk7cp6BJrxyuAynxkHk5oL4e7SzLminQa3Mg516fTKg/KhHPDi5SjCp LEnZer9ho1hK9kp6lNB8jwfRCHUd60AlexranCxyj4KQz4zit2rW2UA+k gArlcLRkEyl3tKEj/cKwMtWvahdw1lUE2ItFrHK5ouqJm+A3POv6RI4Kf l5gD65A4YZxqSJGpYM14dhRK9/zfyPuHqXQL14abZcbDqxY/b5/M0b35M X90uv6gWUk4oPBwaX5msND8ft1ItRRmsIPD/WDwXMPaTQGu5C7hxGWHEc AJp52rtuiKdOys4ySXfo41+jPU0Jn6EbTmBUidDxGSMXoPwnZBYKvVRrq g==; X-IronPort-AV: E=McAfee;i="6500,9779,10601"; a="326694769" X-IronPort-AV: E=Sophos;i="5.97,246,1669104000"; d="scan'208";a="326694769" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jan 2023 12:09:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10601"; a="770871612" X-IronPort-AV: E=Sophos;i="5.97,246,1669104000"; d="scan'208";a="770871612" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga002.fm.intel.com with ESMTP; 25 Jan 2023 12:09:49 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id 51273357; Wed, 25 Jan 2023 22:10:25 +0200 (EET) From: Andy Shevchenko To: Andy Shevchenko , Bartosz Golaszewski , Christophe Leroy , Dmitry Torokhov , linux-gpio@vger.kernel.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Linus Walleij , Bartosz Golaszewski , Arnd Bergmann Subject: [PATCH v1 4/5] gpio: Group forward declarations in consumer.h Date: Wed, 25 Jan 2023 22:10:19 +0200 Message-Id: <20230125201020.10948-5-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230125201020.10948-1-andriy.shevchenko@linux.intel.com> References: <20230125201020.10948-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org For better maintenance group the forward declarations together. Signed-off-by: Andy Shevchenko --- include/linux/gpio/consumer.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/gpio/consumer.h b/include/linux/gpio/consumer.h index a7eb8aa1e54c..5432e5d5fbfb 100644 --- a/include/linux/gpio/consumer.h +++ b/include/linux/gpio/consumer.h @@ -7,6 +7,7 @@ #include #include +struct acpi_device; struct device; struct fwnode_handle; struct gpio_desc; @@ -602,8 +603,6 @@ struct acpi_gpio_mapping { unsigned int quirks; }; -struct acpi_device; - #if IS_ENABLED(CONFIG_GPIOLIB) && IS_ENABLED(CONFIG_ACPI) int acpi_dev_add_driver_gpios(struct acpi_device *adev,