From: Duncan Sands <baldrick@free.fr>
To: Adrian Bunk <bunk@stusta.de>
Cc: Andrew Morton <akpm@osdl.org>,
linux-kernel@vger.kernel.org, Greg Kroah-Hartman <gregkh@suse.de>
Subject: Re: 2.6.12-rc5-mm1: drivers/usb/atm/speedtch.c: gcc 2.95 compile error
Date: Mon, 30 May 2005 09:45:06 +0200 [thread overview]
Message-ID: <1117439106.9515.31.camel@localhost.localdomain> (raw)
In-Reply-To: <20050529151231.GE10441@stusta.de>
On Sun, 2005-05-29 at 17:12 +0200, Adrian Bunk wrote:
> The following compile error with gcc 2.95 seems to be caused by
> broken-out/gregkh-usb-usb-usbatm-{1,2}.patch:
>
> <-- snip -->
>
> ...
> CC drivers/usb/atm/speedtch.o
> drivers/usb/atm/speedtch.c: In function `speedtch_check_status':
> drivers/usb/atm/speedtch.c:447: parse error before `;'
> drivers/usb/atm/speedtch.c:456: parse error before `;'
> drivers/usb/atm/speedtch.c:463: parse error before `;'
> drivers/usb/atm/speedtch.c: In function `speedtch_status_poll':
> drivers/usb/atm/speedtch.c:507: parse error before `;'
> drivers/usb/atm/speedtch.c: In function `speedtch_handle_int':
> drivers/usb/atm/speedtch.c:550: parse error before `;'
> drivers/usb/atm/speedtch.c:552: parse error before `;'
> make[3]: *** [drivers/usb/atm/speedtch.o] Error 1
>
> <-- snip -->
Hi Adrian, it looks like gcc 2.95 doesn't like this kind of macro
#define atm_info(instance, format, arg...) \
atm_printk(KERN_INFO, instance , format , ## arg)
being called with only two arguments. I don't know what
the best fix is, but this does the trick:
Signed-off-by: Duncan Sands <baldrick@free.fr>
--- Linux/drivers/usb/atm/speedtch.c.orig 3 May 2005 07:30:42 -0000 1.58
+++ Linux/drivers/usb/atm/speedtch.c 30 May 2005 07:37:45 -0000
@@ -444,7 +444,7 @@ static void speedtch_check_status(struct
case 0:
if (atm_dev->signal != ATM_PHY_SIG_LOST) {
atm_dev->signal = ATM_PHY_SIG_LOST;
- atm_info(usbatm, "ADSL line is down\n");
+ atm_info(usbatm, "%s\n", "ADSL line is down");
/* It'll never resync again unless we ask it to... */
ret = speedtch_start_synchro(instance);
}
@@ -453,14 +453,14 @@ static void speedtch_check_status(struct
case 0x08:
if (atm_dev->signal != ATM_PHY_SIG_UNKNOWN) {
atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
- atm_info(usbatm, "ADSL line is blocked?\n");
+ atm_info(usbatm, "%s\n", "ADSL line is blocked?");
}
break;
case 0x10:
if (atm_dev->signal != ATM_PHY_SIG_LOST) {
atm_dev->signal = ATM_PHY_SIG_LOST;
- atm_info(usbatm, "ADSL line is synchronising\n");
+ atm_info(usbatm, "%s\n", "ADSL line is synchronising");
}
break;
@@ -504,7 +504,7 @@ static void speedtch_status_poll(unsigne
if (instance->poll_delay < MAX_POLL_DELAY)
mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(instance->poll_delay));
else
- atm_warn(instance->usbatm, "Too many failures - disabling line status polling\n");
+ atm_warn(instance->usbatm, "%s\n", "Too many failures - disabling line status polling");
}
static void speedtch_resubmit_int(unsigned long data)
@@ -547,9 +547,9 @@ static void speedtch_handle_int(struct u
if ((count == 6) && !memcmp(up_int, instance->int_data, 6)) {
del_timer(&instance->status_checker.timer);
- atm_info(usbatm, "DSL line goes up\n");
+ atm_info(usbatm, "%s\n", "DSL line goes up");
} else if ((count == 6) && !memcmp(down_int, instance->int_data, 6)) {
- atm_info(usbatm, "DSL line goes down\n");
+ atm_info(usbatm, "%s\n", "DSL line goes down");
} else {
int i;
next prev parent reply other threads:[~2005-05-30 7:45 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-25 20:49 2.6.12-rc5-mm1 Andrew Morton
2005-05-25 21:37 ` 2.6.12-rc5-mm1 Alexandre Buisse
2005-05-25 21:51 ` 2.6.12-rc5-mm1 Brice Goglin
2005-05-25 21:58 ` 2.6.12-rc5-mm1 Brice Goglin
2005-05-26 5:29 ` 2.6.12-rc5-mm1 Yani Ioannou
2005-05-25 22:57 ` 2.6.12-rc5-mm1 Jesper Juhl
2005-05-26 1:17 ` 2.6.12-rc5-mm1 Matthew Dobson
2005-05-26 2:43 ` 2.6.12-rc5-mm1 Ed Tomlinson
2005-05-26 3:41 ` 2.6.12-rc5-mm1 Andrew Morton
2005-05-26 7:43 ` 2.6.12-rc5-mm1 J.A. Magallon
2005-05-26 7:58 ` 2.6.12-rc5-mm1 Andrew Morton
2005-05-26 13:54 ` 2.6.12-rc5-mm1 Rafael J. Wysocki
2005-05-26 20:45 ` 2.6.12-rc5-mm1 Andrew Morton
2005-05-26 21:04 ` 2.6.12-rc5-mm1 Lee Revell
2005-05-26 21:07 ` 2.6.12-rc5-mm1 Chris Wright
2005-05-27 10:29 ` 2.6.12-rc5-mm1 Rafael J. Wysocki
2005-05-27 17:38 ` 2.6.12-rc5-mm1 Chen, Kenneth W
2005-05-27 22:32 ` 2.6.12-rc5-mm1 J.A. Magallon
2005-05-26 21:39 ` 2.6.12-rc5-mm1 J.A. Magallon
2005-05-26 7:44 ` 2.6.12-rc5-mm1 J.A. Magallon
2005-05-26 7:52 ` 2.6.12-rc5-mm1 Andrew Morton
2005-05-26 8:57 ` 2.6.12-rc5-mm1 Mikael Pettersson
2005-05-26 13:04 ` 2.6.12-rc5-mm1 Andrea Arcangeli
2005-05-26 19:15 ` 2.6.12-rc5-mm1 Mikael Pettersson
2005-05-26 22:22 ` 2.6.12-rc5-mm1 Andrea Arcangeli
2005-05-27 2:47 ` 2.6.12-rc5-mm1 Andrea Arcangeli
2005-05-27 21:13 ` 2.6.12-rc5-mm1 Arnd Bergmann
2005-05-28 7:07 ` 2.6.12-rc5-mm1 Christoph Hellwig
2005-06-29 13:42 ` 2.6.12-rc5-mm1 Arnd Bergmann
2005-06-29 16:22 ` Xtensa syscalls (Was: Re: 2.6.12-rc5-mm1) Christian Zankel
2005-06-29 16:29 ` Christoph Hellwig
2005-06-29 16:47 ` Andrew Morton
2005-06-29 19:11 ` Arnd Bergmann
2005-05-27 22:21 ` Kill signed chars !!! [was Re: 2.6.12-rc5-mm1] J.A. Magallon
2005-05-27 23:46 ` Jesper Juhl
2005-06-21 12:54 ` Kill signed chars !!! => PPC uses unsigned chars Willy Tarreau
2005-06-21 14:23 ` cutaway
2005-06-21 21:13 ` J.A. Magallon
2005-05-29 14:26 ` 2.6.12-rc5-mm1: fork connector doesn't compile with gcc 2.95 Adrian Bunk
2005-05-29 14:38 ` 2.6.12-rc5-mm1: drivers/char/tpm/ compile errors " Adrian Bunk
2005-05-29 14:38 ` 2.6.12-rc5-mm1: drivers/dlm/: compile error " Adrian Bunk
2005-05-29 14:43 ` Matthias-Christian Ott
2005-05-29 15:00 ` Adrian Bunk
2005-05-29 14:45 ` 2.6.12-rc5-mm1: drivers/media/dvb/dvb-usb/a800.c compile error Adrian Bunk
2005-05-30 8:29 ` Patrick Boettcher
2005-05-30 9:14 ` Johannes Stezenbach
2005-05-30 9:30 ` Patrick Boettcher
2005-05-29 15:12 ` 2.6.12-rc5-mm1: drivers/usb/atm/speedtch.c: gcc 2.95 " Adrian Bunk
2005-05-30 7:45 ` Duncan Sands [this message]
2005-05-30 8:04 ` Andrew Morton
2005-05-30 8:16 ` Duncan Sands
2005-05-30 13:52 ` 2.6.12-rc5-mm1 Stefano Rivoir
2005-05-30 19:50 ` [-mm patch] drivers/message/i2o/device.c: i2o_parm_issue has to be global Adrian Bunk
2005-05-31 12:00 ` [PATCH 2.6.12-rc5-mm1] m32r: Insert set_tsk_need_resched() to cpu_idle() (was Re: 2.6.12-rc5-mm1) Hirokazu Takata
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1117439106.9515.31.camel@localhost.localdomain \
--to=baldrick@free.fr \
--cc=akpm@osdl.org \
--cc=bunk@stusta.de \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox