public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jean Delvare <khali@linux-fr.org>
To: David Brownell <david-b@pacbell.net>
Cc: Linux Kernel list <linux-kernel@vger.kernel.org>, i2c@lm-sensors.org
Subject: Re: [i2c] [patch 2.6.18-rc3] build fixes:  tps65010
Date: Mon, 31 Jul 2006 20:53:33 +0200	[thread overview]
Message-ID: <20060731205333.3d986eb6.khali@linux-fr.org> (raw)
In-Reply-To: <200607310725.34094.david-b@pacbell.net>

Hi David,

> The tps65010.c driver in the main tree never got updated with
> build fixes since the last batch of I2C driver changes; and the
> genirq trigger flags were updated wierdly too.

Typo, I guess you mean "weirdly".

> 
> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
> 
> Index: o26/drivers/i2c/chips/tps65010.c
> ===================================================================
> --- o26.orig/drivers/i2c/chips/tps65010.c	2006-07-30 22:09:03.000000000 -0700
> +++ o26/drivers/i2c/chips/tps65010.c	2006-07-31 04:56:47.000000000 -0700
> @@ -43,13 +43,12 @@
>  /*-------------------------------------------------------------------------*/
>  
>  #define	DRIVER_VERSION	"2 May 2005"
> -#define	DRIVER_NAME	(tps65010_driver.name)
> +#define	DRIVER_NAME	(tps65010_driver.driver.name)
>  
>  MODULE_DESCRIPTION("TPS6501x Power Management Driver");
>  MODULE_LICENSE("GPL");
>  
>  static unsigned short normal_i2c[] = { 0x48, /* 0x49, */ I2C_CLIENT_END };
> -static unsigned short normal_i2c_range[] = { I2C_CLIENT_END };
>  
>  I2C_CLIENT_INSMOD;
>  

Yup, obviously correct.

> @@ -520,15 +519,16 @@ tps65010_probe(struct i2c_adapter *bus, 
>  		goto fail1;
>  	}
>  
> +	/* IRQ is active low, but some gpio lines can't support that */
> +	irqflags = IRQF_SAMPLE_RANDOM;
>  #ifdef	CONFIG_ARM
> -	irqflags = IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_LOW;
>  	if (machine_is_omap_h2()) {
>  		tps->model = TPS65010;
>  		omap_cfg_reg(W4_GPIO58);
>  		tps->irq = OMAP_GPIO_IRQ(58);
>  		omap_request_gpio(58);
>  		omap_set_gpio_direction(58, 1);
> -		irqflags |= IRQF_TRIGGER_FALLING;
> +		irqflags |= IRQF_TRIGGER_LOW;
>  	}
>  	if (machine_is_omap_osk()) {
>  		tps->model = TPS65010;
> @@ -543,8 +543,6 @@ tps65010_probe(struct i2c_adapter *bus, 
>  
>  		// FIXME set up this board's IRQ ...
>  	}
> -#else
> -	irqflags = IRQF_SAMPLE_RANDOM;
>  #endif
>  
>  	if (tps->irq > 0) {

This is more surprising. How did the interrupt type suddenly change
from "falling" to "low"? (Note that I am not an interrupt expert.)

Anyway, thanks for fixing this. This is one of the i2c drivers that I
can't compile on the architectures I work on, so I can't spot the
breakage.

I guess you want this fix in 2.6.18?

-- 
Jean Delvare

  reply	other threads:[~2006-07-31 18:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-07-31 14:25 [patch 2.6.18-rc3] build fixes: tps65010 David Brownell
2006-07-31 18:53 ` Jean Delvare [this message]
2006-07-31 21:18   ` [i2c] " David Brownell

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=20060731205333.3d986eb6.khali@linux-fr.org \
    --to=khali@linux-fr.org \
    --cc=david-b@pacbell.net \
    --cc=i2c@lm-sensors.org \
    --cc=linux-kernel@vger.kernel.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