2002-09-13 11:56:19

by Eyal Lebedinsky

[permalink] [raw]
Subject: Re: Linux 2.4.20-pre7 - compile fixes

--- linux/drivers/usb/brlvger.c.orig Thu Aug 29 10:30:50 2002
+++ linux/drivers/usb/brlvger.c Thu Aug 29 10:31:02 2002
@@ -209,7 +209,7 @@
({ printk(KERN_ERR "Voyager: " args); \
printk("\n"); })
#define dbgprint(fmt, args...) \
- ({ printk(KERN_DEBUG "Voyager: %s: " fmt, __FUNCTION__, ##args); \
+ ({ printk(KERN_DEBUG "Voyager: %s: " fmt, __FUNCTION__ , ##args); \
printk("\n"); })
#define dbg(args...) \
({ if(debug >= 1) dbgprint(args); })


Attachments:
2.4.20-pre7-mtd.patch (693.00 B)
2.4.20-pre7-irtty.patch (339.00 B)
2.4.20-pre7-brlvger.patch (479.00 B)
Download all attachments

2002-09-13 16:11:08

by David Woodhouse

[permalink] [raw]
Subject: Re: Linux 2.4.20-pre7 - compile fixes


[email protected] said:
> drivers/mtd/devices/ms02-nv.c
> =============================
> gcc -D__KERNEL__ -I/data2/usr/local/src/linux-2.4-pre/include -Wall
> -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing
> -fno-common -fomit-frame-pointer -pipe -mpreferred-stack-boundary=2
> -march=i686 -malign-functions=4 -DMODULE -DMODVERSIONS -include /
> data2/usr/local/src/linux-2.4-pre/include/linux/modversions.h
> -nostdinc -iwithprefix include -DKBUILD_BASENAME=ms02_nv -c -o
> ms02-nv.o ms02-nv.c

Grr. Never seen this code before in my life. Do I need to update my address
in MAINTAINERS?

--- Config.in 13 Sep 2002 13:46:55 -0000 1.6
+++ Config.in 13 Sep 2002 16:06:40 -0000 1.7
@@ -10,7 +10,9 @@
bool ' PMC551 256M DRAM Bugfix' CONFIG_MTD_PMC551_BUGFIX
bool ' PMC551 Debugging' CONFIG_MTD_PMC551_DEBUG
fi
-dep_tristate ' DEC MS02-NV NVRAM module support' CONFIG_MTD_MS02NV $CONFIG_MTD $CONFIG_DECSTATION
+if [ "$CONFIG_DECSTATION" = "y" ]; then
+ dep_tristate ' DEC MS02-NV NVRAM module support' CONFIG_MTD_MS02NV $CONFIG_MTD
+fi
dep_tristate ' Uncached system RAM' CONFIG_MTD_SLRAM $CONFIG_MTD
if [ "$CONFIG_SA1100_LART" = "y" ]; then
dep_tristate ' 28F160xx flash driver for LART' CONFIG_MTD_LART $CONFIG_MTD




--
dwmw2