diff options
author | Daniel Drake <dsd@laptop.org> | 2011-03-22 16:50:39 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-03-26 19:09:31 -0400 |
commit | adfa4bd4a8bfc53ca7370c57be240d35c2ec28e2 (patch) | |
tree | 077f0fff75ca9b070aa76949900e7fe028c19901 /drivers/mfd | |
parent | fa1df691688f34cbcd5bf77bd084bbe47e9d6bfe (diff) |
mfd: OLPC: Clean up names to match what OLPC actually uses
The cs5535-pms cell doesn't actually need to be cloned, so we can drop that
and simply have the olpc-xo1.c driver use "cs5535-pms" directly.
Also, rename the cs5535-acpi clones to what we actually use for the (currently
out-of-tree) SCI driver. In the process, that fixes a subtle bug in
olpc-xo1.c which broke powerdown on XO-1s.. olpc-xo1-ac-acpi was a typo, not
something that actually existed.
Signed-off-by: Daniel Drake <dsd@laptop.org>
Signed-off-by: Andres Salomon <dilinger@queued.net>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/cs5535-mfd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mfd/cs5535-mfd.c b/drivers/mfd/cs5535-mfd.c index 24959ddd9324..155fa0407882 100644 --- a/drivers/mfd/cs5535-mfd.c +++ b/drivers/mfd/cs5535-mfd.c | |||
@@ -115,14 +115,12 @@ static __devinitdata struct mfd_cell cs5535_mfd_cells[] = { | |||
115 | #ifdef CONFIG_OLPC | 115 | #ifdef CONFIG_OLPC |
116 | static void __devinit cs5535_clone_olpc_cells(void) | 116 | static void __devinit cs5535_clone_olpc_cells(void) |
117 | { | 117 | { |
118 | const char *acpi_clones[] = { "olpc-xo1-acpi" }; | 118 | const char *acpi_clones[] = { "olpc-xo1-pm-acpi", "olpc-xo1-sci-acpi" }; |
119 | const char *pms_clones[] = { "olpc-xo1-pms" }; | ||
120 | 119 | ||
121 | if (!machine_is_olpc()) | 120 | if (!machine_is_olpc()) |
122 | return; | 121 | return; |
123 | 122 | ||
124 | mfd_clone_cell("cs5535-acpi", acpi_clones, ARRAY_SIZE(acpi_clones)); | 123 | mfd_clone_cell("cs5535-acpi", acpi_clones, ARRAY_SIZE(acpi_clones)); |
125 | mfd_clone_cell("cs5535-pms", pms_clones, ARRAY_SIZE(pms_clones)); | ||
126 | } | 124 | } |
127 | #else | 125 | #else |
128 | static void cs5535_clone_olpc_cells(void) { } | 126 | static void cs5535_clone_olpc_cells(void) { } |