[patch] 2.6.5-rc2: fix scsi_transport_spi.c with gcc 2.95
From: Adrian Bunk (bunk_at_fs.tum.de)
Date: 03/20/04
- Previous message: Andrea Arcangeli: "Re: CONFIG_PREEMPT and server workloads"
- In reply to: Linus Torvalds: "Linux 2.6.5-rc2"
- Next in thread: James Bottomley: "Re: [patch] 2.6.5-rc2: fix scsi_transport_spi.c with gcc 2.95"
- Reply: James Bottomley: "Re: [patch] 2.6.5-rc2: fix scsi_transport_spi.c with gcc 2.95"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sat, 20 Mar 2004 13:18:54 +0100 To: Linus Torvalds <torvalds@osdl.org>
I got the following compile error in 2.6.5-rc2 using gcc 2.95:
<-- snip -->
...
CC drivers/scsi/scsi_transport_spi.o
drivers/scsi/scsi_transport_spi.c: In function `spi_dv_retrain':
drivers/scsi/scsi_transport_spi.c:388: parse error before `;'
drivers/scsi/scsi_transport_spi.c:392: parse error before `;'
drivers/scsi/scsi_transport_spi.c: In function `spi_dv_device_internal':
drivers/scsi/scsi_transport_spi.c:463: parse error before `;'
drivers/scsi/scsi_transport_spi.c:475: parse error before `;'
drivers/scsi/scsi_transport_spi.c:494: parse error before `;'
drivers/scsi/scsi_transport_spi.c: In function `spi_dv_device':
drivers/scsi/scsi_transport_spi.c:539: parse error before `;'
drivers/scsi/scsi_transport_spi.c:543: parse error before `;'
make[2]: *** [drivers/scsi/scsi_transport_spi.o] Error 1
<-- snip -->
I found the patch below in -mm that fixes this problem.
Please apply
Adrian
<-- snip -->
Work around the gcc-2.95 token pasting bug.
--- 25-akpm/drivers/scsi/scsi_transport_spi.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/scsi/scsi_transport_spi.c~scsi_transport_spi-build-fix drivers/scsi/scsi_transport_spi.c --- 25/drivers/scsi/scsi_transport_spi.c~scsi_transport_spi-build-fix 2004-03-14 02:45:22.999909632 -0800 +++ 25-akpm/drivers/scsi/scsi_transport_spi.c 2004-03-14 02:45:29.938854752 -0800 @@ -33,7 +33,7 @@ #include <scsi/scsi_transport.h> #include <scsi/scsi_transport_spi.h> -#define SPI_PRINTK(x, l, f, a...) printk(l "scsi(%d:%d:%d:%d): " f, (x)->host->host_no, (x)->channel, (x)->id, (x)->lun, ##a) +#define SPI_PRINTK(x, l, f, a...) printk(l "scsi(%d:%d:%d:%d): " f, (x)->host->host_no, (x)->channel, (x)->id, (x)->lun , ##a) static void transport_class_release(struct class_device *class_dev); _ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Previous message: Andrea Arcangeli: "Re: CONFIG_PREEMPT and server workloads"
- In reply to: Linus Torvalds: "Linux 2.6.5-rc2"
- Next in thread: James Bottomley: "Re: [patch] 2.6.5-rc2: fix scsi_transport_spi.c with gcc 2.95"
- Reply: James Bottomley: "Re: [patch] 2.6.5-rc2: fix scsi_transport_spi.c with gcc 2.95"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|