From e8ba4e0baa62f02ba85258847963512791d89385 Mon Sep 17 00:00:00 2001 From: Stuart Bennett Date: Sun, 14 Sep 2008 16:44:32 +0100 Subject: [PATCH] Only use OF bios image on PPC --- src/nv_bios.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nv_bios.c b/src/nv_bios.c index f8ea711..79d1cb6 100644 --- a/src/nv_bios.c +++ b/src/nv_bios.c @@ -162,7 +162,9 @@ static bool NVShadowVBIOS(ScrnInfoPtr pScrn, uint8_t *data) void (*loadbios)(NVPtr, uint8_t *); int score; } method[] = { +#ifndef __powerpc__ { "PROM", load_vbios_prom }, +#endif { "PRAMIN", load_vbios_pramin }, #ifndef __powerpc__ { "PCI ROM", load_vbios_pci } -- 2.32.0.93.g670b81a890