diff options
author | Andres Salomon <dilinger@queued.net> | 2011-03-03 09:51:58 -0800 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-03-23 10:42:03 +0100 |
commit | f77289ac25b0c81acbed6f9c17cb14809a04e18b (patch) | |
tree | d8c8bf620f35d130b2f8f07334e7b62aa68238ce /include/linux/mfd | |
parent | 7e5dc1f7004832f797999dfb3498a68a6c16ef73 (diff) | |
download | linux-f77289ac25b0c81acbed6f9c17cb14809a04e18b.tar.gz linux-f77289ac25b0c81acbed6f9c17cb14809a04e18b.tar.bz2 linux-f77289ac25b0c81acbed6f9c17cb14809a04e18b.zip |
mfd: Rename mfd_shared_cell_{en,dis}able to drop the "shared" part
As requested by Samuel, there's not really any reason to have "shared"
in the name.
This also modifies the only user of the function, as well.
Signed-off-by: Andres Salomon <dilinger@queued.net>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index ed9970412cc2..1408bf8eed5f 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h @@ -59,8 +59,8 @@ struct mfd_cell { * being called only when a device is first being enabled or no other * clients are making use of it. */ -extern int mfd_shared_cell_enable(struct platform_device *pdev); -extern int mfd_shared_cell_disable(struct platform_device *pdev); +extern int mfd_cell_enable(struct platform_device *pdev); +extern int mfd_cell_disable(struct platform_device *pdev); /* * Given a platform device that's been created by mfd_add_devices(), fetch |