diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2009-11-03 05:53:17 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-12-13 13:21:38 -0500 |
commit | b9f96b5dcb1e2a75d142e481b77805ffdc6ccea6 (patch) | |
tree | 3ae3d9f273ec160b6cf6549f0bb2a159cbd6f79a | |
parent | b45440c33a0bdd824b98e4a4c56767c50d3275eb (diff) |
mfd: ezx-pcap: Don't pass pcap pointer as subdev drvdata.
Abusing subdev drvdata is not needed anymore, as all pcap subdevs are now
retrieving the pcap pointer from their parent device.
This change removes a leftover coming from early versions of ezx-pcap and its
subdevs drivers.
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r-- | drivers/mfd/ezx-pcap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/ezx-pcap.c b/drivers/mfd/ezx-pcap.c index 876288917976..df405af968fa 100644 --- a/drivers/mfd/ezx-pcap.c +++ b/drivers/mfd/ezx-pcap.c | |||
@@ -387,7 +387,6 @@ static int __devinit pcap_add_subdev(struct pcap_chip *pcap, | |||
387 | pdev = platform_device_alloc(subdev->name, subdev->id); | 387 | pdev = platform_device_alloc(subdev->name, subdev->id); |
388 | pdev->dev.parent = &pcap->spi->dev; | 388 | pdev->dev.parent = &pcap->spi->dev; |
389 | pdev->dev.platform_data = subdev->platform_data; | 389 | pdev->dev.platform_data = subdev->platform_data; |
390 | platform_set_drvdata(pdev, pcap); | ||
391 | 390 | ||
392 | return platform_device_add(pdev); | 391 | return platform_device_add(pdev); |
393 | } | 392 | } |