mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] atyfb: fix build regression
@ 2010-10-28 12:41 Davidlohr Bueso
  0 siblings, 0 replies; only message in thread
From: Davidlohr Bueso @ 2010-10-28 12:41 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML

From: Davidlohr Bueso <dave@gnu.org>
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@gnu.org>
---
 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




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-10-28 12:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-28 12:41 [PATCH] atyfb: fix build regression Davidlohr Bueso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome