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>
This commit is contained in:
Andres Salomon
2011-03-03 09:51:58 -08:00
committed by Samuel Ortiz
부모 7e5dc1f700
커밋 f77289ac25
3개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제

파일 보기

@@ -63,7 +63,7 @@ static int __devinit olpc_xo1_probe(struct platform_device *pdev)
if (!machine_is_olpc())
return -ENODEV;
err = mfd_shared_cell_enable(pdev);
err = mfd_cell_enable(pdev);
if (err)
return err;
@@ -88,7 +88,7 @@ static int __devinit olpc_xo1_probe(struct platform_device *pdev)
static int __devexit olpc_xo1_remove(struct platform_device *pdev)
{
mfd_shared_cell_disable(pdev);
mfd_cell_disable(pdev);
if (strcmp(pdev->name, "olpc-xo1-pms") == 0)
pms_base = 0;