All of lore.kernel.org
 help / color / mirror / Atom feed
From: adobriyan@mail.ru (Alexey Dobriyan)
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: Greg KH <greg@kroah.com>,
	linux-kernel@vger.kernel.org, sensors@stimpy.netroedge.com
Subject: [PATCH 2.6] I2C: New chip driver: sis5595
Date: Thu, 19 May 2005 06:25:35 +0000	[thread overview]
Message-ID: <200502011420.17466.adobriyan@mail.ru> (raw)
In-Reply-To: <20050125220945.GA23560@bode.aurel32.net>

On Tue, 1 Feb 2005 11:11:35 +0100, Aurelien Jarno wrote:

> Please find below the new version of the patch against kernel
> 2.6.11-rc2-mm2 to add the sis5595 driver (sensor part).

> --- linux-2.6.11-rc2-mm2.orig/drivers/i2c/chips/sis5595.c
> +++ linux-2.6.11-rc2-mm2/drivers/i2c/chips/sis5595.c

> +struct sis5595_data {

> +	char valid;		/* !=0 if following fields are valid */

> +};

> +static struct sis5595_data *sis5595_update_device(struct device *dev)
> +{

> +	if ((jiffies - data->last_updated > HZ + HZ / 2) ||
> +	    (jiffies < data->last_updated) || !data->valid) {

		[snip reading some values]

> +		data->last_updated = jiffies;
> +		data->valid = 1;
> +	}

> +}

Maybe you should call sis5595_update_device() in initialization finction and
get rid of "value" field. It's sole purpose to fill "struct sis5595" when it's
known that "last_updated" field contains crap.

> +			dev_err(&s_bridge->dev, "sis5595.ko: Error: Looked for SIS5595 but found unsupported device %.4X\n", *i);

> +		dev_err(&s_bridge->dev, "sis5595.ko: base address not set - upgrade BIOS or use force_addr=0xaddr\n");

".ko" isn't needed. "Error: " in the first line too.

	Alexey

WARNING: multiple messages have this Message-ID (diff)
From: Alexey Dobriyan <adobriyan@mail.ru>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: Greg KH <greg@kroah.com>,
	linux-kernel@vger.kernel.org, sensors@stimpy.netroedge.com
Subject: Re: [PATCH 2.6] I2C: New chip driver: sis5595
Date: Tue, 1 Feb 2005 14:20:17 +0200	[thread overview]
Message-ID: <200502011420.17466.adobriyan@mail.ru> (raw)

On Tue, 1 Feb 2005 11:11:35 +0100, Aurelien Jarno wrote:

> Please find below the new version of the patch against kernel
> 2.6.11-rc2-mm2 to add the sis5595 driver (sensor part).

> --- linux-2.6.11-rc2-mm2.orig/drivers/i2c/chips/sis5595.c
> +++ linux-2.6.11-rc2-mm2/drivers/i2c/chips/sis5595.c

> +struct sis5595_data {

> +	char valid;		/* !=0 if following fields are valid */

> +};

> +static struct sis5595_data *sis5595_update_device(struct device *dev)
> +{

> +	if ((jiffies - data->last_updated > HZ + HZ / 2) ||
> +	    (jiffies < data->last_updated) || !data->valid) {

		[snip reading some values]

> +		data->last_updated = jiffies;
> +		data->valid = 1;
> +	}

> +}

Maybe you should call sis5595_update_device() in initialization finction and
get rid of "value" field. It's sole purpose to fill "struct sis5595" when it's
known that "last_updated" field contains crap.

> +			dev_err(&s_bridge->dev, "sis5595.ko: Error: Looked for SIS5595 but found unsupported device %.4X\n", *i);

> +		dev_err(&s_bridge->dev, "sis5595.ko: base address not set - upgrade BIOS or use force_addr=0xaddr\n");

".ko" isn't needed. "Error: " in the first line too.

	Alexey

       reply	other threads:[~2005-05-19  6:25 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-02-01 12:20 Alexey Dobriyan [this message]
2005-05-19  6:25 ` [PATCH 2.6] I2C: New chip driver: sis5595 Alexey Dobriyan
2005-02-01 11:49 ` Jean Delvare
2005-05-19  6:25   ` Jean Delvare
2005-02-01 14:12   ` Alexey Dobriyan
2005-05-19  6:25     ` Alexey Dobriyan
2005-02-01 13:52     ` Jean Delvare
2005-05-19  6:25       ` Jean Delvare
2005-02-01 14:43       ` Jean Delvare
2005-05-19  6:25         ` Jean Delvare
2005-02-01 16:57       ` Alexey Dobriyan
2005-05-19  6:25         ` Alexey Dobriyan
2005-02-01 16:42         ` Jean Delvare
2005-05-19  6:25           ` Jean Delvare
2005-02-01 12:14 ` Aurelien Jarno
2005-05-19  6:25   ` Aurelien Jarno
2005-02-01 16:54   ` Greg KH
2005-05-19  6:25     ` Greg KH
2005-02-01 17:00     ` Jean Delvare
2005-05-19  6:25       ` Jean Delvare
2005-02-01 16:55   ` Greg KH
2005-05-19  6:25     ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2005-02-06 20:26 [PATCH 2.6] I2C: New chip driver: sis5595 (resubmit) Aurélien Jarno
2005-05-19  6:25 ` Aurélien Jarno
2005-02-17 22:25 ` Greg KH
2005-05-19  6:25   ` Greg KH
2005-01-25 22:09 [PATCH 2.6] I2C: New chip driver: sis5595 Aurélien Jarno
2005-05-19  6:25 ` Aurélien Jarno
2005-01-31 18:21 ` Greg KH
2005-05-19  6:25   ` Greg KH
2005-02-01 10:11   ` Aurelien Jarno
2005-05-19  6:25     ` Aurelien Jarno

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200502011420.17466.adobriyan@mail.ru \
    --to=adobriyan@mail.ru \
    --cc=aurelien@aurel32.net \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sensors@stimpy.netroedge.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.