This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Thu Apr 25 12:19:55 2024 Received: from spaans.ds9a.nl (adsl-xs4all.ds9a.nl [213.84.159.51]) by kylie.puddingonline.com (8.11.6/8.11.6) with SMTP id g8INI6X18616 for ; Thu, 19 Sep 2002 01:18:06 +0200 Received: (qmail 20433 invoked from network); 18 Sep 2002 08:53:06 -0000 Received: from unknown (HELO spaans.ds9a.nl) (3ffe:8280:10:360:202:44ff:fe2a:a1dd) by mayo.ipv6.ds9a.nl with SMTP; 18 Sep 2002 08:53:06 -0000 Received: (qmail 2326 invoked by uid 1000); 17 Sep 2002 21:44:33 -0000 Received: (maildatabase); juh Received: (qmail 21389 invoked by alias); 23 Aug 2002 14:58:41 -0000 Received: (qmail 21386 invoked from network); 23 Aug 2002 14:58:40 -0000 Received: from unknown (HELO dipsaus.ds9a.tudelft.nl) (3ffe:8280:10:360:2a0:cff:fe14:9dde) by mayo.ipv6.ds9a.nl with SMTP; 23 Aug 2002 14:58:40 -0000 Received: (qmail 25207 invoked from network); 23 Aug 2002 14:58:39 -0000 Received: from unknown (HELO vger.kernel.org) (::ffff:209.116.70.75) by adsl-xs4all.ds9a.nl with SMTP; 23 Aug 2002 14:58:39 -0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Fri, 23 Aug 2002 10:52:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Fri, 23 Aug 2002 10:52:58 -0400 Received: from mailrelay2.lanl.gov ([128.165.4.103]:22409 "EHLO mailrelay2.lanl.gov") by vger.kernel.org with ESMTP id ; Fri, 23 Aug 2002 10:52:57 -0400 Received: from popmail.esa.lanl.gov (localhost.localdomain [127.0.0.1]) by mailrelay2.lanl.gov (8.12.3/8.12.3/(ccn-5)) with ESMTP id g7NEs6Mv008177; Fri, 23 Aug 2002 08:56:29 -0600 Received: from spc9.esa.lanl.gov (128.165.67.199) by popmail.esa.lanl.gov (Worldmail 1.3.167); 23 Aug 2002 08:56:29 -0600 Subject: Re: Linux 2.4.20-pre4-ac1 (this time regarding 2.5.31) From: Steven Cole To: Thunder from the hill Cc: Eyal Lebedinsky , Alan Cox , Linux Kernel In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.2-5mdk Date: 23 Aug 2002 08:53:07 -0600 Message-Id: <1030114387.4029.22.camel@spc9.esa.lanl.gov> Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org X-Spam-Status: No, hits=-3.4 required=6.0 tests=IN_REP_TO version=2.31 X-Spam-Level: Lines: 48 On Fri, 2002-08-23 at 08:29, Thunder from the hill wrote: > Hi, > > On Sat, 24 Aug 2002, Eyal Lebedinsky wrote: > > linux/drivers/usb/brlvger.c compile error > > > > You would think that gcc, having had the same problem for a while, > > would have smarted up by now. And they say computers are our > > future... > > Can't believe! In 2.5 we still use concatenation w/__FUNCTION__. > > #define dbgprint(args...) \ > ({ printk(KERN_DEBUG "Voyager: " __FUNCTION__ ": " args); \ > printk("\n"); }) > > Shall we fix it? > > #define dbgprint(args...) \ > printk(KERN_DEBUG "Voyager: %s: " args "\n", __FUNCTION__ ); > > should cut it, but > > #define dbgprint(fmt, args...) \ > printk(KERN_DEBUG "Voyager: %s: " fmt "\n", __FUNCTION__ , args); > > might be better. > > Thunder While you're at it, there are three other places you might want to take a look at: [steven@spc9 linux-2.4.20-pre4-ac1]$ find . -name "*.c" | xargs grep -l "__, ##" ./drivers/video/aty128fb.c ./drivers/usb/brlvger.c ./drivers/ieee1394/sbp2.c ./arch/arm/mach-sa1100/system3.c Steven  - 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/