diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2015-12-14 05:19:11 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-01-11 02:33:16 -0500 |
commit | f199d39349beabcb1a374cb02e0845a0ae84f3fd (patch) | |
tree | cc8b7bee94629fd66114fa25b3235c1f65c4bda1 /drivers/mfd | |
parent | 8726cacc7f38e7e122e6910fb0b979dcd1ca89d3 (diff) |
mfd: arizona: Add device tree binding to specify mono outputs
Add device tree bindings to support specifying outputs from the chip as
mono outputs. Whilst we are doing it change the out_mono pdata from a
bool to an int, because Sparse gets upset about using ARRAY_SIZE on
bools.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/arizona-core.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c index b9489a0d7fab..4bb486679110 100644 --- a/drivers/mfd/arizona-core.c +++ b/drivers/mfd/arizona-core.c | |||
@@ -861,6 +861,16 @@ static int arizona_of_get_core_pdata(struct arizona *arizona) | |||
861 | count++; | 861 | count++; |
862 | } | 862 | } |
863 | 863 | ||
864 | count = 0; | ||
865 | of_property_for_each_u32(arizona->dev->of_node, "wlf,out-mono", prop, | ||
866 | cur, val) { | ||
867 | if (count == ARRAY_SIZE(pdata->out_mono)) | ||
868 | break; | ||
869 | |||
870 | pdata->out_mono[count] = !!val; | ||
871 | count++; | ||
872 | } | ||
873 | |||
864 | return 0; | 874 | return 0; |
865 | } | 875 | } |
866 | 876 | ||