aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-03-04 02:05:54 -0500
committerBen Skeggs <bskeggs@redhat.com>2012-03-13 03:15:01 -0400
commit05a7c15d48ff53b054bc36fc8a2be8bc9b60d9e7 (patch)
treea6d3e6e87b900c89459b4848e5e5edb5899f6391 /drivers
parent7c5f6a87b2337cc81fb6d16e848501e2dbe00a3d (diff)
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')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_bios.c2
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 {
204static struct methods shadow_methods[] = { 204static struct methods shadow_methods[] = {
205 { "PRAMIN", load_vbios_pramin, true }, 205 { "PRAMIN", load_vbios_pramin, true },
206 { "PROM", load_vbios_prom, false }, 206 { "PROM", load_vbios_prom, false },
207 { "PCIROM", load_vbios_pci, true },
208 { "ACPI", load_vbios_acpi, true }, 207 { "ACPI", load_vbios_acpi, true },
208 { "PCIROM", load_vbios_pci, true },
209}; 209};
210#define NUM_SHADOW_METHODS ARRAY_SIZE(shadow_methods) 210#define NUM_SHADOW_METHODS ARRAY_SIZE(shadow_methods)
211 211