]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[controlfb] Ifdef for when CONFIG_NVRAM isn't enabled.
authorBen Collins <bcollins@ubuntu.com>
Wed, 18 Oct 2006 12:49:31 +0000 (08:49 -0400)
committerBen Collins <bcollins@ubuntu.com>
Wed, 18 Oct 2006 12:49:31 +0000 (08:49 -0400)
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
drivers/video/controlfb.c

index 8cc6c0e2d27aa74935776168562aa5b1f0d26f1c..04c6d928189b82b1c761fafb5ea408267c187958 100644 (file)
@@ -415,13 +415,15 @@ static int __init init_control(struct fb_info_control *p)
        full = p->total_vram == 0x400000;
 
        /* Try to pick a video mode out of NVRAM if we have one. */
+#ifdef CONFIG_NVRAM
        if (default_cmode == CMODE_NVRAM){
                cmode = nvram_read_byte(NV_CMODE);
                if(cmode < CMODE_8 || cmode > CMODE_32)
                        cmode = CMODE_8;
        } else
+#endif
                cmode=default_cmode;
-
+#ifdef CONFIG_NVRAM
        if (default_vmode == VMODE_NVRAM) {
                vmode = nvram_read_byte(NV_VMODE);
                if (vmode < 1 || vmode > VMODE_MAX ||
@@ -432,7 +434,9 @@ static int __init init_control(struct fb_info_control *p)
                        if (control_mac_modes[vmode - 1].m[full] < cmode)
                                vmode = VMODE_640_480_60;
                }
-       } else {
+       } else
+#endif
+       {
                vmode=default_vmode;
                if (control_mac_modes[vmode - 1].m[full] < cmode) {
                        if (cmode > CMODE_8)