From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754885Ab0I0LtJ (ORCPT ); Mon, 27 Sep 2010 07:49:09 -0400 Received: from imr4.ericy.com ([198.24.6.8]:56432 "EHLO imr4.ericy.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750905Ab0I0LtI (ORCPT ); Mon, 27 Sep 2010 07:49:08 -0400 Date: Mon, 27 Sep 2010 04:48:01 -0700 From: Guenter Roeck To: Ingo Molnar CC: "lm-sensors@lm-sensors.org" , "linux-kernel@vger.kernel.org" , "torvalds@linux-foundation.org" , Fenghua Yu , Jean Delvare Subject: Re: [PATCH] hwmon (coretemp): Fix build breakage if SMP is undefined Message-ID: <20100927114801.GA31757@ericsson.com> References: <1285530603-2510-1-git-send-email-guenter.roeck@ericsson.com> <20100927062510.GA17825@elte.hu> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20100927062510.GA17825@elte.hu> 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 On Mon, Sep 27, 2010 at 02:25:10AM -0400, Ingo Molnar wrote: > > * Guenter Roeck wrote: > > > Commit e40cc4bdfd4b89813f072f72bd9c7055814d3f0f introduced > > a build breakage if CONFIG_SMP is undefined. This patch > > fixes the problem. > > > > Reported-by: Ingo Molnar > > Cc: Fenghua Yu > > Cc: Jean Delvare > > Signed-off-by: Guenter Roeck > > > > --- > > drivers/hwmon/coretemp.c | 2 ++ > > 1 files changed, 2 insertions(+), 0 deletions(-) > > > > diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c > > index baa842a..58a3c2d 100644 > > --- a/drivers/hwmon/coretemp.c > > +++ b/drivers/hwmon/coretemp.c > > @@ -503,9 +503,11 @@ static void coretemp_device_remove(unsigned int cpu) > > list_del(&p->list); > > mutex_unlock(&pdev_list_mutex); > > kfree(p); > > +#ifdef CONFIG_SMP > > for_each_cpu(i, cpu_sibling_mask(cpu)) > > if (i != cpu && !coretemp_device_add(i)) > > break; > > +#endif > > Wont this result in an 'unused variable i' compiler warning? > Sigh. Yes, of course. Must have been blind when I compiled it. Serves me right, for pushing this out in a hurry. You'll see rev2 of the patch in a minute. Guenter