diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-07-20 07:43:45 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-09-17 03:46:51 -0400 |
commit | fb6c023a2b845df1ec383b74644ac35a4bbb76b6 (patch) | |
tree | dbb8acdaa37c8ce80ee702a55f672476b6e45444 /drivers/mfd | |
parent | 39b1772a24126d74699cea623f96b50ca6b6f08f (diff) |
hwmon: Add WM835x PMIC hardware monitoring driver
This driver provides reporting of the status supply voltage rails
of the WM835x series of PMICs via the hwmon API.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/wm8350-core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c index fe24079387c5..9d662a576a41 100644 --- a/drivers/mfd/wm8350-core.c +++ b/drivers/mfd/wm8350-core.c | |||
@@ -1472,6 +1472,8 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq, | |||
1472 | &(wm8350->codec.pdev)); | 1472 | &(wm8350->codec.pdev)); |
1473 | wm8350_client_dev_register(wm8350, "wm8350-gpio", | 1473 | wm8350_client_dev_register(wm8350, "wm8350-gpio", |
1474 | &(wm8350->gpio.pdev)); | 1474 | &(wm8350->gpio.pdev)); |
1475 | wm8350_client_dev_register(wm8350, "wm8350-hwmon", | ||
1476 | &(wm8350->hwmon.pdev)); | ||
1475 | wm8350_client_dev_register(wm8350, "wm8350-power", | 1477 | wm8350_client_dev_register(wm8350, "wm8350-power", |
1476 | &(wm8350->power.pdev)); | 1478 | &(wm8350->power.pdev)); |
1477 | wm8350_client_dev_register(wm8350, "wm8350-rtc", &(wm8350->rtc.pdev)); | 1479 | wm8350_client_dev_register(wm8350, "wm8350-rtc", &(wm8350->rtc.pdev)); |
@@ -1498,6 +1500,7 @@ void wm8350_device_exit(struct wm8350 *wm8350) | |||
1498 | platform_device_unregister(wm8350->wdt.pdev); | 1500 | platform_device_unregister(wm8350->wdt.pdev); |
1499 | platform_device_unregister(wm8350->rtc.pdev); | 1501 | platform_device_unregister(wm8350->rtc.pdev); |
1500 | platform_device_unregister(wm8350->power.pdev); | 1502 | platform_device_unregister(wm8350->power.pdev); |
1503 | platform_device_unregister(wm8350->hwmon.pdev); | ||
1501 | platform_device_unregister(wm8350->gpio.pdev); | 1504 | platform_device_unregister(wm8350->gpio.pdev); |
1502 | platform_device_unregister(wm8350->codec.pdev); | 1505 | platform_device_unregister(wm8350->codec.pdev); |
1503 | 1506 | ||