Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754199Ab0GaBQq (ORCPT ); Fri, 30 Jul 2010 21:16:46 -0400 Received: from imr3.ericy.com ([198.24.6.13]:56002 "EHLO imr3.ericy.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751978Ab0GaBQp (ORCPT ); Fri, 30 Jul 2010 21:16:45 -0400 Date: Fri, 30 Jul 2010 18:13:39 -0700 From: Guenter Roeck To: "H. Peter Anvin" CC: Fenghua Yu , Ingo Molnar , Thomas Gleixner , Len Brown , Chen Gong , Jean Delvare , Huaxu Wan , linux-kernel , lm-sensors Subject: Re: [PATCH V3 2/5] Package Level Thermal Control and Power Limit Notification: pkgtemp hwmon driver Message-ID: <20100731011339.GB28386@ericsson.com> References: <1280448826-12004-1-git-send-email-fenghua.yu@intel.com> <1280448826-12004-3-git-send-email-fenghua.yu@intel.com> <4C537514.9090109@zytor.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <4C537514.9090109@zytor.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1218 Lines: 30 On Fri, Jul 30, 2010 at 08:57:56PM -0400, H. Peter Anvin wrote: > On 07/29/2010 05:13 PM, Fenghua Yu wrote: > > + > > +enum { SHOW_TEMP, SHOW_TJMAX, SHOW_TTARGET, SHOW_LABEL, SHOW_NAME } SHOW; > > + > > This conflicts with an equally poorly named global variable in > drivers/hwmon/via-cputemp.c, and the conflict is causing a build failure. > > I think both these drivers have the same bug: a missing "typedef" before > the enum keyword, as present in coretemp.c. Of course, one can question > if it should be given a typename at all since in none of these drivers Especially since it isn't really a type name, but a global variable named SHOW. Type name (also called tag) would be enum SHOW { ... }; . Guenter > they are actually referenced by type, and instead the enumeration is > just used as a source of constants, which can perfectly well be handled > with an unnamed enum: > > enum { SHOW_TEMP, SHOW_TJMAX, SHOW_TTARGET, SHOW_LABEL, SHOW_NAME }; > > -hpa -- 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/