Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33597
b: refs/heads/master
c: 4801bc2
h: refs/heads/master
i:
  33595: 48f30ed
v: v3
  • Loading branch information
David Brownell authored and Greg Kroah-Hartman committed Aug 26, 2006
1 parent 63c3a3b commit 274f349
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f834c755423332a6ff4397fae754029a6a7a8249
refs/heads/master: 4801bc25f37a969ea773c24d12fd4738541848a1
12 changes: 6 additions & 6 deletions trunk/drivers/i2c/chips/tps65010.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -100,7 +99,7 @@ struct tps65010 {
/* not currently tracking GPIO state */
};

#define POWER_POLL_DELAY msecs_to_jiffies(800)
#define POWER_POLL_DELAY msecs_to_jiffies(5000)

/*-------------------------------------------------------------------------*/

Expand Down Expand Up @@ -520,8 +519,11 @@ tps65010_probe(struct i2c_adapter *bus, int address, int kind)
goto fail1;
}

/* the IRQ is active low, but many gpio lines can't support that
* so this driver can use falling-edge triggers instead.
*/
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);
Expand All @@ -543,8 +545,6 @@ tps65010_probe(struct i2c_adapter *bus, int address, int kind)

// FIXME set up this board's IRQ ...
}
#else
irqflags = IRQF_SAMPLE_RANDOM;
#endif

if (tps->irq > 0) {
Expand Down

0 comments on commit 274f349

Please sign in to comment.