Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 94958
b: refs/heads/master
c: 5826042
h: refs/heads/master
v: v3
  • Loading branch information
Philipp Zabel authored and Russell King committed Apr 24, 2008
1 parent b14d081 commit bae45a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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: ee008b4cdfb7082e1a57d63911d39bed0817d7d4
refs/heads/master: 5826042d3c550522e49a8a55db64d9c47b43a8f9
9 changes: 5 additions & 4 deletions trunk/drivers/mfd/htc-pasic3.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,9 @@ static struct ds1wm_platform_data ds1wm_pdata = {
.disable = ds1wm_disable,
};

static int ds1wm_device_add(struct device *pasic3_dev, int bus_shift)
static int ds1wm_device_add(struct platform_device *pasic3_pdev, int bus_shift)
{
struct device *pasic3_dev = &pasic3_pdev->dev;
struct pasic3_data *asic = pasic3_dev->driver_data;
struct platform_device *pdev;
int ret;
Expand All @@ -147,8 +148,8 @@ static int ds1wm_device_add(struct device *pasic3_dev, int bus_shift)
return -ENOMEM;
}

ret = platform_device_add_resources(pdev, pdev->resource,
pdev->num_resources);
ret = platform_device_add_resources(pdev, pasic3_pdev->resource,
pasic3_pdev->num_resources);
if (ret < 0) {
dev_dbg(pasic3_dev, "failed to add DS1WM resources\n");
goto exit_pdev_put;
Expand Down Expand Up @@ -210,7 +211,7 @@ static int __init pasic3_probe(struct platform_device *pdev)
return -ENOMEM;
}

ret = ds1wm_device_add(dev, asic->bus_shift);
ret = ds1wm_device_add(pdev, asic->bus_shift);
if (ret < 0)
dev_warn(dev, "failed to register DS1WM\n");

Expand Down

0 comments on commit bae45a2

Please sign in to comment.