From: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
lethal-M7jkjyW5wf5g9hUCZPvPmw@public.gmane.org,
Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Subject: Re: [PATCH 3/3] i2c/pca-platform: use defaults if no platform_data given
Date: Thu, 26 Feb 2009 22:30:17 +0100 [thread overview]
Message-ID: <20090226223017.13f26884@hyperion.delvare> (raw)
In-Reply-To: <1235492536-31695-4-git-send-email-w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
On Tue, 24 Feb 2009 17:22:16 +0100, Wolfram Sang wrote:
> Signed-off-by: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> ---
> drivers/i2c/busses/i2c-pca-platform.c | 19 ++++++++++++-------
> 1 files changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-pca-platform.c b/drivers/i2c/busses/i2c-pca-platform.c
> index df5e593..7b23891 100644
> --- a/drivers/i2c/busses/i2c-pca-platform.c
> +++ b/drivers/i2c/busses/i2c-pca-platform.c
> @@ -177,10 +177,20 @@ static int __devinit i2c_pca_pf_probe(struct platform_device *pdev)
> (unsigned long) res->start);
> i2c->adap.algo_data = &i2c->algo_data;
> i2c->adap.dev.parent = &pdev->dev;
> - i2c->adap.timeout = platform_data->timeout;
>
> - i2c->algo_data.i2c_clock = platform_data->i2c_clock_speed;
> + if (platform_data) {
> + i2c->adap.timeout = platform_data->timeout;
> + i2c->algo_data.i2c_clock = platform_data->i2c_clock_speed;
> + i2c->gpio = platform_data->gpio;
> + } else {
> + i2c->adap.timeout = HZ;
> + i2c->algo_data.i2c_clock = 59000;
> + i2c->gpio = -1;
> + }
> +
> i2c->algo_data.data = i2c;
> + i2c->algo_data.wait_for_completion = i2c_pca_pf_waitforcompletion;
> + i2c->algo_data.reset_chip = i2c_pca_pf_dummyreset;
>
> switch (res->flags & IORESOURCE_MEM_TYPE_MASK) {
> case IORESOURCE_MEM_32BIT:
> @@ -198,11 +208,6 @@ static int __devinit i2c_pca_pf_probe(struct platform_device *pdev)
> break;
> }
>
> - i2c->algo_data.wait_for_completion = i2c_pca_pf_waitforcompletion;
> -
> - i2c->gpio = platform_data->gpio;
> - i2c->algo_data.reset_chip = i2c_pca_pf_dummyreset;
> -
> /* Use gpio_is_valid() when in mainline */
> if (i2c->gpio > -1) {
> ret = gpio_request(i2c->gpio, i2c->adap.name);
Applied, thanks.
--
Jean Delvare
prev parent reply other threads:[~2009-02-26 21:30 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-24 16:22 i2c/pca: handle timeout Wolfram Sang
[not found] ` <1235492536-31695-1-git-send-email-w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-02-24 16:22 ` [PATCH 1/3] i2c/algo-pca: rework waiting for a free bus Wolfram Sang
[not found] ` <1235492536-31695-2-git-send-email-w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-02-26 17:14 ` Jean Delvare
[not found] ` <20090226181447.35775a21-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2009-02-27 8:44 ` [PATCH V2 " Wolfram Sang
[not found] ` <20090227084412.GA3481-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-02-27 10:59 ` Jean Delvare
2009-02-24 16:22 ` [PATCH 2/3] i2c/algo-pca: use timeout for checking the state machine Wolfram Sang
[not found] ` <1235492536-31695-3-git-send-email-w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-02-26 21:25 ` Jean Delvare
2009-02-24 16:22 ` [PATCH 3/3] i2c/pca-platform: use defaults if no platform_data given Wolfram Sang
[not found] ` <1235492536-31695-4-git-send-email-w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-02-26 21:30 ` Jean Delvare [this message]
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=20090226223017.13f26884@hyperion.delvare \
--to=khali-puyad+kwke1g9huczpvpmw@public.gmane.org \
--cc=lethal-M7jkjyW5wf5g9hUCZPvPmw@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox