diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2008-11-24 20:20:30 +0100 |
---|---|---|
committer | Samuel Ortiz <samuel@sortiz.org> | 2009-01-04 12:17:38 +0100 |
commit | d756f4a4446227ca9626087939a6769ca55ab036 (patch) | |
tree | 572e6788f3aa01c74c1c8ebb139b0d8a137cdd72 /include | |
parent | 14431aa0c5a443d13d24e6f865a8838f97dab973 (diff) | |
download | op-kernel-dev-d756f4a4446227ca9626087939a6769ca55ab036.zip op-kernel-dev-d756f4a4446227ca9626087939a6769ca55ab036.tar.gz |
mfd: Switch WM8350 revision detection to a feature based model
Rather than check for chip revisions in the WM8350 drivers have the core
code set flags for relevant differences.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/wm8350/core.h | 2 | ||||
-rw-r--r-- | include/linux/mfd/wm8350/supply.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mfd/wm8350/core.h b/include/linux/mfd/wm8350/core.h index d2614df..3c97356 100644 --- a/include/linux/mfd/wm8350/core.h +++ b/include/linux/mfd/wm8350/core.h @@ -585,8 +585,6 @@ struct wm8350_irq { }; struct wm8350 { - int rev; /* chip revision */ - struct device *dev; /* device IO */ diff --git a/include/linux/mfd/wm8350/supply.h b/include/linux/mfd/wm8350/supply.h index 7972151..2b94793 100644 --- a/include/linux/mfd/wm8350/supply.h +++ b/include/linux/mfd/wm8350/supply.h @@ -127,6 +127,8 @@ struct wm8350_power { struct power_supply usb; struct power_supply ac; struct wm8350_charger_policy *policy; + + int rev_g_coeff; }; #endif |