Skip to content

Commit 1a255bf

Browse files
Ben Skeggsgregkh
authored andcommitted
drm/nouveau/TBDdevinit: don't fail when PMU/PRE_OS is missing from VBIOS
[ Upstream commit 0a6986c ] This Falcon application doesn't appear to be present on some newer systems, so let's not fail init if we can't find it. TBD: is there a way to determine whether it *should* be there? Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 34d5456 commit 1a255bf

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • drivers/gpu/drm/nouveau/nvkm/subdev/devinit

drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gm200.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ gm200_devinit_post(struct nvkm_devinit *base, bool post)
158158
}
159159

160160
/* load and execute some other ucode image (bios therm?) */
161-
return pmu_load(init, 0x01, post, NULL, NULL);
161+
pmu_load(init, 0x01, post, NULL, NULL);
162+
return 0;
162163
}
163164

164165
static const struct nvkm_devinit_func

0 commit comments

Comments
 (0)