diff options
author | 2011-04-12 14:25:10 -0700 | |
---|---|---|
committer | 2011-04-12 14:25:10 -0700 | |
commit | e328f05dd6c528fcc9eb6da157dd865dfe611352 (patch) | |
tree | c2bfbdada67dd80a8eed5aeafbe0d7322b1c1b2a /drivers/base/platform.c | |
parent | nfs: don't call __mark_inode_dirty while holding i_lock (diff) | |
parent | mfd: Fetch cell pointer from platform_device->mfd_cell (diff) | |
download | wireguard-linux-e328f05dd6c528fcc9eb6da157dd865dfe611352.tar.xz wireguard-linux-e328f05dd6c528fcc9eb6da157dd865dfe611352.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6:
mfd: Fetch cell pointer from platform_device->mfd_cell
Diffstat (limited to 'drivers/base/platform.c')
-rw-r--r-- | drivers/base/platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index f051cfff18af..6c3a2bdc527a 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -149,6 +149,7 @@ static void platform_device_release(struct device *dev) of_device_node_put(&pa->pdev.dev); kfree(pa->pdev.dev.platform_data); + kfree(pa->pdev.mfd_cell); kfree(pa->pdev.resource); kfree(pa); } |