diff options
| author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2026-07-16 14:36:45 +0200 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2026-07-16 18:27:48 -0400 |
| commit | 8e1f8214cbba2ccda3f3c625df0a67dcfd9b1356 (patch) | |
| tree | 1a278e4d183097d633751ee8dcafbb5665ade9d2 | |
| parent | 7264bc10c7c657a54603c7fc058bf8e15f18ce12 (diff) | |
| download | linux-8e1f8214cbba2ccda3f3c625df0a67dcfd9b1356.tar.gz linux-8e1f8214cbba2ccda3f3c625df0a67dcfd9b1356.zip | |
drm/radeon: Only define radeon_acpi_vfct_match when actually used
This fixes the build failure
drivers/gpu/drm/radeon/radeon_bios.c:614:12: error: ‘radeon_acpi_vfct_match’ defined but not used [-Werror=unused-function]
614 | static int radeon_acpi_vfct_match(struct radeon_device *rdev,
| ^~~~~~~~~~~~~~~~~~~~~~
for builds with CONFIG_ACPI unset.
Fixes: 4059e2f02c8a ("drm/radeon: Fix VFCT bus number matching with soft filter")
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
| -rw-r--r-- | drivers/gpu/drm/radeon/radeon_bios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_bios.c b/drivers/gpu/drm/radeon/radeon_bios.c index 215e47c94d29..8595f4c6e2e5 100644 --- a/drivers/gpu/drm/radeon/radeon_bios.c +++ b/drivers/gpu/drm/radeon/radeon_bios.c @@ -596,6 +596,7 @@ static bool radeon_read_disabled_bios(struct radeon_device *rdev) return legacy_read_disabled_bios(rdev); } +#ifdef CONFIG_ACPI /** * radeon_acpi_vfct_match() - Check if a VFCT entry matches the device * @rdev: Radeon device @@ -635,7 +636,6 @@ static int radeon_acpi_vfct_match(struct radeon_device *rdev, return 0; } -#ifdef CONFIG_ACPI static bool radeon_acpi_vfct_bios(struct radeon_device *rdev) { struct acpi_table_header *hdr; |
