From nobody Wed Dec 17 18:59:49 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 8B89CC77B76 for ; Mon, 17 Apr 2023 21:06:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229887AbjDQVFe (ORCPT ); Mon, 17 Apr 2023 17:05:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51432 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229884AbjDQVFa (ORCPT ); Mon, 17 Apr 2023 17:05:30 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B3F6110F0 for ; Mon, 17 Apr 2023 14:05:29 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 4A70D62A35 for ; Mon, 17 Apr 2023 21:05:29 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83730C433D2; Mon, 17 Apr 2023 21:05:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681765528; bh=52CmbMWSGGlcsW0V31cEnaaOdCM0vYFCDeDCtkUevl0=; h=From:To:Cc:Subject:Date:From; b=GwWfpxW4bU6LZiq+Q8pr5OqGmmUa/5KdN85Ai8A0eDaznC0OnH4A/r02FYwzR9bbP UhmPxtE3k7+tEpJy4Zd3/k5hO0VYaF7pEK2HQMSvhmozzsh0Z8XZvHI5A4aWBRuTTm YT3IhkxDLQ6tIEpCyfj6XN+AeyKunLeafgyNZNFatfXlZFw5PKgT7wYDzKaX1JsHqK PgBc/4rOyZB1wrw3vEBeMDIIoZz0iEu7DNdQbe/H/VyYreGS6MHoYvIDMSpsWhJB81 vhor1cAGc+wKO53K7B0DQhVKVozvCy51HCNxi2hub53JvXOeVD2fXSUJTuevUKcW4N ufmoTAICrFe1w== From: Arnd Bergmann To: Alex Deucher , =?UTF-8?q?Christian=20K=C3=B6nig?= , "Pan, Xinhui" , David Airlie , Daniel Vetter Cc: Arnd Bergmann , Thomas Zimmermann , amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: [PATCH] drm/radeon: move prototypes to header Date: Mon, 17 Apr 2023 23:04:50 +0200 Message-Id: <20230417210523.2553531-1-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 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" From: Arnd Bergmann Global functions in radeon_atpx_handler.c are not declared in a header but instead in each file using them. This risks the types getting out of sync and causes warnings: drivers/gpu/drm/radeon/radeon_atpx_handler.c:64:6: error: no previous proto= type for 'radeon_has_atpx' [-Werror=3Dmissing-prototypes] drivers/gpu/drm/radeon/radeon_atpx_handler.c:68:6: error: no previous proto= type for 'radeon_has_atpx_dgpu_power_cntl' [-Werror=3Dmissing-prototypes] drivers/gpu/drm/radeon/radeon_atpx_handler.c:72:6: error: no previous proto= type for 'radeon_is_atpx_hybrid' [-Werror=3Dmissing-prototypes] drivers/gpu/drm/radeon/radeon_atpx_handler.c:76:6: error: no previous proto= type for 'radeon_atpx_dgpu_req_power_for_displays' [-Werror=3Dmissing-proto= types] drivers/gpu/drm/radeon/radeon_atpx_handler.c:594:6: error: no previous prot= otype for 'radeon_register_atpx_handler' [-Werror=3Dmissing-prototypes] drivers/gpu/drm/radeon/radeon_atpx_handler.c:612:6: error: no previous prot= otype for 'radeon_unregister_atpx_handler' [-Werror=3Dmissing-prototypes] Signed-off-by: Arnd Bergmann --- drivers/gpu/drm/radeon/radeon.h | 18 ++++++++++++++++++ drivers/gpu/drm/radeon/radeon_acpi.c | 6 ------ drivers/gpu/drm/radeon/radeon_atpx_handler.c | 1 + drivers/gpu/drm/radeon/radeon_device.c | 8 -------- drivers/gpu/drm/radeon/radeon_drv.c | 13 ------------- drivers/gpu/drm/radeon/radeon_kms.c | 6 ------ 6 files changed, 19 insertions(+), 33 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeo= n.h index 8afb03bbce29..74fb4dfc3e5e 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -2964,6 +2964,24 @@ void radeon_irq_kms_set_irq_n_enabled(struct radeon_= device *rdev, void radeon_audio_component_init(struct radeon_device *rdev); void radeon_audio_component_fini(struct radeon_device *rdev); =20 +/* atpx handler */ +#if defined(CONFIG_VGA_SWITCHEROO) +bool radeon_has_atpx(void); +void radeon_register_atpx_handler(void); +void radeon_unregister_atpx_handler(void); +bool radeon_has_atpx_dgpu_power_cntl(void); +bool radeon_is_atpx_hybrid(void); +bool radeon_atpx_dgpu_req_power_for_displays(void); +#else +static inline bool radeon_has_atpx(void) { return false; } +static inline void radeon_register_atpx_handler(void) {} +static inline void radeon_unregister_atpx_handler(void) {} +static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; } +static inline bool radeon_is_atpx_hybrid(void) { return false; } +static inline bool radeon_atpx_dgpu_req_power_for_displays(void) { return = false; } +#endif + + #include "radeon_object.h" =20 #endif diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/drivers/gpu/drm/radeon/= radeon_acpi.c index 5771d1fcb073..695c673eb9f6 100644 --- a/drivers/gpu/drm/radeon/radeon_acpi.c +++ b/drivers/gpu/drm/radeon/radeon_acpi.c @@ -38,12 +38,6 @@ #include "radeon_acpi.h" #include "radeon_pm.h" =20 -#if defined(CONFIG_VGA_SWITCHEROO) -bool radeon_atpx_dgpu_req_power_for_displays(void); -#else -static inline bool radeon_atpx_dgpu_req_power_for_displays(void) { return = false; } -#endif - #define ACPI_AC_CLASS "ac_adapter" =20 struct atif_verify_interface { diff --git a/drivers/gpu/drm/radeon/radeon_atpx_handler.c b/drivers/gpu/drm= /radeon/radeon_atpx_handler.c index 6f93f54bf651..dfd30558f8e8 100644 --- a/drivers/gpu/drm/radeon/radeon_atpx_handler.c +++ b/drivers/gpu/drm/radeon/radeon_atpx_handler.c @@ -12,6 +12,7 @@ #include =20 #include "radeon_acpi.h" +#include "radeon.h" =20 struct radeon_atpx_functions { bool px_params; diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeo= n/radeon_device.c index afbb3a80c0c6..180f8aa971b4 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c @@ -113,14 +113,6 @@ static const char radeon_family_name[][16] =3D { "LAST", }; =20 -#if defined(CONFIG_VGA_SWITCHEROO) -bool radeon_has_atpx_dgpu_power_cntl(void); -bool radeon_is_atpx_hybrid(void); -#else -static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; } -static inline bool radeon_is_atpx_hybrid(void) { return false; } -#endif - #define RADEON_PX_QUIRK_DISABLE_PX (1 << 0) =20 struct radeon_px_quirk { diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/r= adeon_drv.c index e4374814f0ef..d8d75b347678 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c @@ -128,19 +128,6 @@ int radeon_mode_dumb_create(struct drm_file *file_priv, struct drm_device *dev, struct drm_mode_create_dumb *args); =20 -/* atpx handler */ -#if defined(CONFIG_VGA_SWITCHEROO) -void radeon_register_atpx_handler(void); -void radeon_unregister_atpx_handler(void); -bool radeon_has_atpx_dgpu_power_cntl(void); -bool radeon_is_atpx_hybrid(void); -#else -static inline void radeon_register_atpx_handler(void) {} -static inline void radeon_unregister_atpx_handler(void) {} -static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; } -static inline bool radeon_is_atpx_hybrid(void) { return false; } -#endif - int radeon_no_wb; int radeon_modeset =3D -1; int radeon_dynclks =3D -1; diff --git a/drivers/gpu/drm/radeon/radeon_kms.c b/drivers/gpu/drm/radeon/r= adeon_kms.c index e0214cf1b43b..2a491381fb26 100644 --- a/drivers/gpu/drm/radeon/radeon_kms.c +++ b/drivers/gpu/drm/radeon/radeon_kms.c @@ -41,12 +41,6 @@ #include "radeon_drv.h" #include "radeon_kms.h" =20 -#if defined(CONFIG_VGA_SWITCHEROO) -bool radeon_has_atpx(void); -#else -static inline bool radeon_has_atpx(void) { return false; } -#endif - /** * radeon_driver_unload_kms - Main unload function for KMS. * --=20 2.39.2