Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Fri, 13 Sep 2002 13:41:43 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Fri, 13 Sep 2002 13:41:43 -0400 Received: from tomts13-srv.bellnexxia.net ([209.226.175.34]:11923 "EHLO tomts13-srv.bellnexxia.net") by vger.kernel.org with ESMTP id ; Fri, 13 Sep 2002 13:41:42 -0400 Message-ID: <3D82247A.80601@googgun.com> Date: Fri, 13 Sep 2002 13:46:34 -0400 From: Ahmed Masud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Thunder from the hill CC: Andreas Steinmetz , Bob_Tracy , dag@brattli.net, linux-kernel@vger.kernel.org Subject: Re: 2.5.34: IR __FUNCTION__ breakage References: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 976 Lines: 27 Thunder from the hill wrote: >Hi, > >On Fri, 13 Sep 2002, Andreas Steinmetz wrote: > >>At least for gcc 3.2 this would be better: >> >>#define DERROR(dbg, fmt, args...) \ >> do { if (DEBUG_##dbg) \ >> printk(KERN_INFO "irnet: %s(): " fmt, __FUNCTION__, ##args); \ >> } while(0) >> Perhaps a hybrid of the two? : #define DERROR(dbg, fmt, args...) \ do { if (DEBUG_##dbg) { \ printk(KERN_INFO "irnet: %s() : ", __FUNCTION__); \ printk(fmt, ## args); \ } \ } while (0) - 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/