|
From: <ai...@us...> - 2003-09-27 13:12:41
|
Update of /cvsroot/linux-vax/kernel-2.4/drivers/video
In directory sc8-pr-cvs1:/tmp/cvs-serv3030/drivers/video
Modified Files:
Config.in Makefile fbmem.c
Log Message:
merge 2.4.22
Index: Config.in
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/video/Config.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Config.in 27 Sep 2003 09:21:18 -0000 1.7
+++ Config.in 27 Sep 2003 13:11:58 -0000 1.8
@@ -172,7 +172,7 @@
bool ' Use CRT on Pb1100 ' CONFIG_PB1500_CRT
bool ' Use TFT Panel on Pb1100 ' CONFIG_PB1500_TFT
fi
- if [ "$CONFIG_MIPS_PB1100" = "y" ]; then
+ if [ "$CONFIG_SOC_AU1100" = "y" ]; then
bool ' Au1100 LCD Driver' CONFIG_FB_AU1100
fi
fi
@@ -220,7 +220,7 @@
if [ "$CONFIG_DECSTATION" = "y" ]; then
dep_bool ' PMAG-BA TURBOchannel framebuffer support' CONFIG_FB_PMAG_BA $CONFIG_TC
dep_bool ' PMAGB-B TURBOchannel framebuffer support' CONFIG_FB_PMAGB_B $CONFIG_TC
- bool ' Maxine (Personal DECstation) onboard framebuffer support' CONFIG_FB_MAXINE
+ dep_bool ' Maxine (Personal DECstation) onboard framebuffer support' CONFIG_FB_MAXINE $CONFIG_TC
fi
if [ "$CONFIG_NINO" = "y" ]; then
bool ' TMPTX3912/PR31700 frame buffer support' CONFIG_FB_TX3912
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/video/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile 27 Sep 2003 09:21:19 -0000 1.7
+++ Makefile 27 Sep 2003 13:11:58 -0000 1.8
@@ -130,6 +130,7 @@
obj-$(CONFIG_FB_VIRTUAL) += vfb.o
obj-$(CONFIG_FB_HIT) += hitfb.o fbgen.o
obj-$(CONFIG_FB_E1355) += epson1355fb.o fbgen.o
+obj-$(CONFIG_FB_E1356) += epson1356fb.o
obj-$(CONFIG_FB_PVR2) += pvr2fb.o
obj-$(CONFIG_FB_VOODOO1) += sstfb.o
Index: fbmem.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/video/fbmem.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- fbmem.c 27 Sep 2003 09:21:19 -0000 1.8
+++ fbmem.c 27 Sep 2003 13:11:58 -0000 1.9
@@ -134,6 +134,8 @@
extern int intelfb_setup(char*);
extern int e1355fb_init(void);
extern int e1355fb_setup(char*);
+extern int e1356fb_init(void);
+extern int e1356fb_setup(char*);
extern int au1100fb_init(void);
extern int au1100fb_setup(char*);
extern int pvr2fb_init(void);
@@ -306,6 +308,9 @@
#endif
#ifdef CONFIG_FB_E1355
{ "e1355fb", e1355fb_init, e1355fb_setup },
+#endif
+#ifdef CONFIG_FB_E1356
+ { "e1356fb", e1356fb_init, e1356fb_setup },
#endif
#ifdef CONFIG_FB_PVR2
{ "pvr2", pvr2fb_init, pvr2fb_setup },
|