Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 15 Aug 2002 17:47:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 15 Aug 2002 17:47:41 -0400 Received: from chaos.physics.uiowa.edu ([128.255.34.189]:63430 "EHLO chaos.physics.uiowa.edu") by vger.kernel.org with ESMTP id ; Thu, 15 Aug 2002 17:47:40 -0400 Date: Thu, 15 Aug 2002 16:50:33 -0500 (CDT) From: Kai Germaschewski X-X-Sender: kai@chaos.physics.uiowa.edu To: Alan Cox cc: Adrian Bunk , Subject: Re: Linux 2.4.20-pre2-ac3 In-Reply-To: <200208152054.g7FKsif02357@devserv.devel.redhat.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1179 Lines: 34 On Thu, 15 Aug 2002, Alan Cox wrote: > > > Linux 2.4.20-pre2-ac2 > > >... > > > o Tweak isdn to try and fix gcc 2.95 compile (Kai Germaschewski) > > >... > > > > Compilation of 2.4.20-pre2-ac3 fails: > > Ok fixed the ifdef way to handle the old cpp problems then Well, so I had to dowload and compile gcc 2.95 and reproduce the problem... The following patch fixes it: diff -ur linux-2.4.20-pre2/drivers/isdn/hisax/hisax_debug.h linux-2.4.20-pre2.x/drivers/isdn/hisax/hisax_debug.h --- linux-2.4.20-pre2/drivers/isdn/hisax/hisax_debug.h Thu Aug 15 16:48:25 2002 +++ linux-2.4.20-pre2.x/drivers/isdn/hisax/hisax_debug.h Thu Aug 15 16:48:04 2002 @@ -28,7 +28,7 @@ #define DBG(level, format, arg...) do { \ if (level & __debug_variable) \ -printk(KERN_DEBUG "%s: " format "\n" , __FUNCTION__, ## arg); \ +printk(KERN_DEBUG "%s: " format "\n" , __FUNCTION__ , ## arg); \ } while (0) #define DBG_PACKET(level,data,count) \ - 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/