Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 11 Jun 2002 02:10:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 11 Jun 2002 02:10:25 -0400 Received: from [195.63.194.11] ([195.63.194.11]:24078 "EHLO mail.stock-world.de") by vger.kernel.org with ESMTP id ; Tue, 11 Jun 2002 02:10:23 -0400 Message-ID: <3D059446.6030302@evision-ventures.com> Date: Tue, 11 Jun 2002 08:10:14 +0200 From: Martin Dalecki User-Agent: Mozilla/5.0 (X11; U; Linux i686; pl-PL; rv:1.0.0) Gecko/20020611 X-Accept-Language: pl, en-us MIME-Version: 1.0 To: "Maksim (Max) Krasnyanskiy" CC: Linus Torvalds , Kernel Mailing List Subject: Re: [PATCH] 2.5.21 kill warnings 4/19 In-Reply-To: <5.1.0.14.2.20020610114308.09306358@mail1.qualcomm.com> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Maksim (Max) Krasnyanskiy wrote: > Hi Martin, > > How about replacing __FUNCTION__ with __func__ ? > GCC 3.x warns that __FUNCTION__ is obsolete and will be removed. > Here is how I did it in Bluetooth code: > #define BT_DBG(fmt, arg...) printk(KERN_INFO "%s: " fmt "\n" , > __func__ , ## arg) > no more warnings from gcc. GCC doesn't warn that __FUNCTION__ is obsolete. The usage of __FUNCTION__ as string literal is what is offending it. __func__ is a GNU "extension". - 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/