Skip to content

Commit

Permalink
drm/nouveau/TBDdevinit: don't fail when PMU/PRE_OS is missing from VBIOS
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ben Skeggs committed Sep 6, 2018
1 parent 51ed833 commit 0a6986c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gm200.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ gm200_devinit_post(struct nvkm_devinit *base, bool post)
}

/* load and execute some other ucode image (bios therm?) */
return pmu_load(init, 0x01, post, NULL, NULL);
pmu_load(init, 0x01, post, NULL, NULL);
return 0;
}

static const struct nvkm_devinit_func
Expand Down

0 comments on commit 0a6986c

Please sign in to comment.