[PATCH] atyfb: fix build regression

From: Davidlohr Bueso
Date: Thu Oct 28 2010 - 08:41:30 EST


From: Davidlohr Bueso <dave@xxxxxxx>
Date: Thu, 28 Oct 2010 09:32:44 -0300
Subject: [PATCH 6/6] atyfb: fix build regression

On Today's randconfig the following is happening on Linus' latest tree:

CC drivers/video/aty/atyfb_base.o
drivers/video/aty/atyfb_base.c:553: error: âram_dramâ undeclared here (not in a function)
drivers/video/aty/atyfb_base.c:554: error: âram_resvâ undeclared here (not in a function)
make[3]: *** [drivers/video/aty/atyfb_base.o] Error 1
make[2]: *** [drivers/video/aty] Error 2
make[1]: *** [drivers/video] Error 2
make: *** [drivers] Error 2

I believe that th ram_dram and ram_resv where removed based on this http://lkml.org/lkml/2010/9/22/258

Signed-off-by: Davidlohr Bueso <dave@xxxxxxx>
---
drivers/video/aty/atyfb_base.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/video/aty/atyfb_base.c b/drivers/video/aty/atyfb_base.c
index 8e58f4a..5988b88 100644
--- a/drivers/video/aty/atyfb_base.c
+++ b/drivers/video/aty/atyfb_base.c
@@ -535,6 +535,8 @@ static int __devinit correct_chipset(struct atyfb_par *par)
return 0;
}

+static char ram_dram[] __devinitdata = "DRAM";
+static char ram_resv[] __devinitdata = "RESV";
#ifdef CONFIG_FB_ATY_GX
static char ram_vram[] __devinitdata = "VRAM";
#endif /* CONFIG_FB_ATY_GX */
--
1.7.0.4



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/