Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 105824
b: refs/heads/master
c: 60e540d
h: refs/heads/master
v: v3
  • Loading branch information
Arnaud Patard authored and Linus Torvalds committed Jul 25, 2008
1 parent 5b14f45 commit 0fd5b61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 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: f61be273d3699d174bc1438e6804f9f9e52bb932
refs/heads/master: 60e540d617b40eb3d37f1dd99c97af588ff9b70b
6 changes: 4 additions & 2 deletions trunk/drivers/mfd/sm501.c
Original file line number Diff line number Diff line change
Expand Up @@ -996,12 +996,13 @@ static int __devinit sm501_gpio_register_chip(struct sm501_devdata *sm,
{
struct sm501_platdata *pdata = sm->platdata;
struct gpio_chip *gchip = &chip->gpio;
unsigned base = pdata->gpio_base;
int base = pdata->gpio_base;

memcpy(chip, &gpio_chip_template, sizeof(struct gpio_chip));

if (chip == &gpio->high) {
base += 32;
if (base > 0)
base += 32;
chip->regbase = gpio->regs + SM501_GPIO_DATA_HIGH;
gchip->label = "SM501-HIGH";
} else {
Expand Down Expand Up @@ -1452,6 +1453,7 @@ static struct sm501_platdata_fb sm501_fb_pdata = {
static struct sm501_platdata sm501_pci_platdata = {
.init = &sm501_pci_initdata,
.fb = &sm501_fb_pdata,
.gpio_base = -1,
};

static int sm501_pci_probe(struct pci_dev *dev,
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/sm501.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ struct sm501_platdata {
struct sm501_platdata_fb *fb;

int flags;
unsigned gpio_base;
int gpio_base;

int (*get_power)(struct device *dev);
int (*set_power)(struct device *dev, unsigned int on);
Expand Down

0 comments on commit 0fd5b61

Please sign in to comment.