[parisc-linux-cvs] remove printk from wide ramdisk crc code
Richard Hirst
rhirst@linuxcare.com
Wed, 20 Jun 2001 16:57:47 +0100
Hopefully this wont break other wide boxes... tested on A500.
Index: Makefile
===================================================================
RCS file: /home/cvs/parisc/linux/Makefile,v
retrieving revision 1.65
diff -u -r1.65 Makefile
--- Makefile 2001/06/20 14:16:09 1.65
+++ Makefile 2001/06/20 15:47:10
@@ -1,7 +1,7 @@
VERSION = 2
PATCHLEVEL = 4
SUBLEVEL = 0
-EXTRAVERSION = -pa33
+EXTRAVERSION = -pa34
KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Index: drivers/block/rd.c
===================================================================
RCS file: /home/cvs/parisc/linux/drivers/block/rd.c,v
retrieving revision 1.13
diff -u -r1.13 rd.c
--- rd.c 2001/05/08 18:24:19 1.13
+++ rd.c 2001/06/20 15:47:11
@@ -868,10 +868,6 @@
ch = *in++;
c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
}
-#ifdef __LP64__
-/* If you remove this printk, wide-mode CRC errors will ensue -PB */
-printk("crc %lx -> %lx\n", crc, c);
-#endif
crc = c;
bytes_out += (ulg)outcnt;
outcnt = 0;