diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-03-04 17:05:54 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-03-13 17:15:01 +1000 |
commit | 05a7c15d48ff53b054bc36fc8a2be8bc9b60d9e7 (patch) | |
tree | a6d3e6e87b900c89459b4848e5e5edb5899f6391 /drivers/gpu/drm/nouveau | |
parent | 7c5f6a87b2337cc81fb6d16e848501e2dbe00a3d (diff) | |
download | talos-obmc-linux-05a7c15d48ff53b054bc36fc8a2be8bc9b60d9e7.tar.gz talos-obmc-linux-05a7c15d48ff53b054bc36fc8a2be8bc9b60d9e7.zip |
drm/nouveau/bios: attempt acpi rom fetch before pcirom
There's cards out there with completely messed up PCIROM images that have
a perfectly valid signature.. Sigh!
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index e5cbead85e50..773d9cbe19df 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c @@ -204,8 +204,8 @@ struct methods { static struct methods shadow_methods[] = { { "PRAMIN", load_vbios_pramin, true }, { "PROM", load_vbios_prom, false }, - { "PCIROM", load_vbios_pci, true }, { "ACPI", load_vbios_acpi, true }, + { "PCIROM", load_vbios_pci, true }, }; #define NUM_SHADOW_METHODS ARRAY_SIZE(shadow_methods) |