Skip to content

Commit 3dbc021

Browse files
webgeek1234Danilo Krummrich
authored andcommitted
drm/nouveau/pmu: Fix gp10b firmware guard
Most kernel configs enable multiple Tegra SoC generations, causing this typo to go unnoticed. But in the case where a kernel config is strictly for Tegra186, this is a problem. Fixes: 989863d ("drm/nouveau/pmu: select implementation based on available firmware") Signed-off-by: Aaron Kling <webgeek1234@gmail.com> Signed-off-by: Danilo Krummrich <dakr@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20250218-nouveau-gm10b-guard-v2-1-a4de71500d48@gmail.com
1 parent 8821f36 commit 3dbc021

File tree

1 file changed

+1
-1
lines changed
  • drivers/gpu/drm/nouveau/nvkm/subdev/pmu

1 file changed

+1
-1
lines changed

drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp10b.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ gp10b_pmu_acr = {
7575
.bootstrap_multiple_falcons = gp10b_pmu_acr_bootstrap_multiple_falcons,
7676
};
7777

78-
#if IS_ENABLED(CONFIG_ARCH_TEGRA_210_SOC)
78+
#if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC)
7979
MODULE_FIRMWARE("nvidia/gp10b/pmu/desc.bin");
8080
MODULE_FIRMWARE("nvidia/gp10b/pmu/image.bin");
8181
MODULE_FIRMWARE("nvidia/gp10b/pmu/sig.bin");

0 commit comments

Comments
 (0)