From mboxrd@z Thu Jan 1 00:00:00 1970 From: greg@kroah.com (Greg KH) Date: Thu, 19 May 2005 06:25:24 +0000 Subject: adm1026 driver port for kernel 2.6.10-rc2 (patch includes driver, Message-Id: <20041124213600.GA3165@kroah.com> List-Id: References: <20041102221745.GB18020@penguincomputing.com> <20041103164354.GB20465@penguincomputing.com> <20041118185612.GA20728@penguincomputing.com> <20041123165236.GA4936@penguincomputing.com> In-Reply-To: <20041123165236.GA4936@penguincomputing.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Justin Thiessen Cc: phil@netroedge.com, khali@linux-fr.org, sensors@Stimpy.netroedge.com, linux-kernel@vger.kernel.org Hm, this looks like a bug: > +static ssize_t set_pwm_enable(struct device *dev, const char *buf, > + size_t count) > +{ > + struct i2c_client *client = to_i2c_client(dev); > + struct adm1026_data *data = i2c_get_clientdata(client); > + int val; > + int old_enable; > + > + if ((val >= 0) && (val < 3)) { You are using val before assigning it anything. The compiler warns you about this issue. Care to fix this up and resend the whole patch? Oh, and it should be "Signed-off-by:" not "Signed off by:" like you had used :) thanks, greg k-h From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261295AbUKXVkR (ORCPT ); Wed, 24 Nov 2004 16:40:17 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262692AbUKXVh2 (ORCPT ); Wed, 24 Nov 2004 16:37:28 -0500 Received: from e3.ny.us.ibm.com ([32.97.182.143]:21935 "EHLO e3.ny.us.ibm.com") by vger.kernel.org with ESMTP id S262860AbUKXVgS (ORCPT ); Wed, 24 Nov 2004 16:36:18 -0500 Date: Wed, 24 Nov 2004 13:36:00 -0800 From: Greg KH To: Justin Thiessen Cc: phil@netroedge.com, khali@linux-fr.org, sensors@Stimpy.netroedge.com, linux-kernel@vger.kernel.org Subject: Re: adm1026 driver port for kernel 2.6.10-rc2 (patch includes driver, patch to Kconfig, and patch to Makefile) Message-ID: <20041124213600.GA3165@kroah.com> References: <20041102221745.GB18020@penguincomputing.com> <20041103164354.GB20465@penguincomputing.com> <20041118185612.GA20728@penguincomputing.com> <20041123165236.GA4936@penguincomputing.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041123165236.GA4936@penguincomputing.com> User-Agent: Mutt/1.5.6i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hm, this looks like a bug: > +static ssize_t set_pwm_enable(struct device *dev, const char *buf, > + size_t count) > +{ > + struct i2c_client *client = to_i2c_client(dev); > + struct adm1026_data *data = i2c_get_clientdata(client); > + int val; > + int old_enable; > + > + if ((val >= 0) && (val < 3)) { You are using val before assigning it anything. The compiler warns you about this issue. Care to fix this up and resend the whole patch? Oh, and it should be "Signed-off-by:" not "Signed off by:" like you had used :) thanks, greg k-h