diff options
| author | Paul Mackerras <paulus@samba.org> | 2006-08-31 01:45:48 -0400 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2006-08-31 01:45:48 -0400 |
| commit | aa43f77939c97bf9d3580c6a5e71a5a40290e451 (patch) | |
| tree | 095c0b8b3da4b6554a3f8ef4b39240a5d9216d4d /drivers/i2c | |
| parent | 2818c5dec5e28d65d52afbb7695bbbafe6377ee5 (diff) | |
| parent | 4c15343167b5febe7bb0ba96aad5bef42ae94d3b (diff) | |
Merge branch 'merge'
Diffstat (limited to 'drivers/i2c')
| -rw-r--r-- | drivers/i2c/chips/tps65010.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/i2c/chips/tps65010.c b/drivers/i2c/chips/tps65010.c index e7e27049fbfa..0be6fd6a267d 100644 --- a/drivers/i2c/chips/tps65010.c +++ b/drivers/i2c/chips/tps65010.c | |||
| @@ -43,13 +43,12 @@ | |||
| 43 | /*-------------------------------------------------------------------------*/ | 43 | /*-------------------------------------------------------------------------*/ |
| 44 | 44 | ||
| 45 | #define DRIVER_VERSION "2 May 2005" | 45 | #define DRIVER_VERSION "2 May 2005" |
| 46 | #define DRIVER_NAME (tps65010_driver.name) | 46 | #define DRIVER_NAME (tps65010_driver.driver.name) |
| 47 | 47 | ||
| 48 | MODULE_DESCRIPTION("TPS6501x Power Management Driver"); | 48 | MODULE_DESCRIPTION("TPS6501x Power Management Driver"); |
| 49 | MODULE_LICENSE("GPL"); | 49 | MODULE_LICENSE("GPL"); |
| 50 | 50 | ||
| 51 | static unsigned short normal_i2c[] = { 0x48, /* 0x49, */ I2C_CLIENT_END }; | 51 | static unsigned short normal_i2c[] = { 0x48, /* 0x49, */ I2C_CLIENT_END }; |
| 52 | static unsigned short normal_i2c_range[] = { I2C_CLIENT_END }; | ||
| 53 | 52 | ||
| 54 | I2C_CLIENT_INSMOD; | 53 | I2C_CLIENT_INSMOD; |
| 55 | 54 | ||
| @@ -100,7 +99,7 @@ struct tps65010 { | |||
| 100 | /* not currently tracking GPIO state */ | 99 | /* not currently tracking GPIO state */ |
| 101 | }; | 100 | }; |
| 102 | 101 | ||
| 103 | #define POWER_POLL_DELAY msecs_to_jiffies(800) | 102 | #define POWER_POLL_DELAY msecs_to_jiffies(5000) |
| 104 | 103 | ||
| 105 | /*-------------------------------------------------------------------------*/ | 104 | /*-------------------------------------------------------------------------*/ |
| 106 | 105 | ||
| @@ -520,8 +519,11 @@ tps65010_probe(struct i2c_adapter *bus, int address, int kind) | |||
| 520 | goto fail1; | 519 | goto fail1; |
| 521 | } | 520 | } |
| 522 | 521 | ||
| 522 | /* the IRQ is active low, but many gpio lines can't support that | ||
| 523 | * so this driver can use falling-edge triggers instead. | ||
| 524 | */ | ||
| 525 | irqflags = IRQF_SAMPLE_RANDOM; | ||
| 523 | #ifdef CONFIG_ARM | 526 | #ifdef CONFIG_ARM |
| 524 | irqflags = IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_LOW; | ||
| 525 | if (machine_is_omap_h2()) { | 527 | if (machine_is_omap_h2()) { |
| 526 | tps->model = TPS65010; | 528 | tps->model = TPS65010; |
| 527 | omap_cfg_reg(W4_GPIO58); | 529 | omap_cfg_reg(W4_GPIO58); |
| @@ -543,8 +545,6 @@ tps65010_probe(struct i2c_adapter *bus, int address, int kind) | |||
| 543 | 545 | ||
| 544 | // FIXME set up this board's IRQ ... | 546 | // FIXME set up this board's IRQ ... |
| 545 | } | 547 | } |
| 546 | #else | ||
| 547 | irqflags = IRQF_SAMPLE_RANDOM; | ||
| 548 | #endif | 548 | #endif |
| 549 | 549 | ||
| 550 | if (tps->irq > 0) { | 550 | if (tps->irq > 0) { |
