diff mbox

ASoC: cs35l32: prevent unexpected parse result of device tree

Message ID 1458043574-6078-2-git-send-email-o-takashi@sakamocchi.jp (mailing list archive)
State New, archived
Headers show

Commit Message

Takashi Sakamoto March 15, 2016, 12:06 p.m. UTC
When device tree blob has no node properties requested by callers,
of_property_read_u32() returns minus value, then given argument is
not changed.

In current code of cs35l32 codec, the function is used with no condition
statement for evaluation of the return value. Thus, the value of 'val'
argument can be evaluated in following switch statement without
initialization or assignment.

This causes a bug that the property retrieved by previous function calls
can be evaluated in later switch statements when some properties are
missing.

This commit fixes the bug. Unfortunately, these switch statements include
cases with zero value. I initialize the argument with maximum number for
argument type so that it apparently matches default cases and generates
debug messages when missing.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 sound/soc/codecs/cs35l32.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Mark Brown March 15, 2016, 2:30 p.m. UTC | #1
On Tue, Mar 15, 2016 at 09:06:14PM +0900, Takashi Sakamoto wrote:
> When device tree blob has no node properties requested by callers,
> of_property_read_u32() returns minus value, then given argument is
> not changed.

This is probably fixed by a recent patch, please check with current code.

Please don't send cover latters for single patches, if they're needed
they indicate that you need to improve the commit log for the change.
Takashi Sakamoto March 16, 2016, 3:51 a.m. UTC | #2
On Mar 15 2016 23:30, Mark Brown wrote:
> On Tue, Mar 15, 2016 at 09:06:14PM +0900, Takashi Sakamoto wrote:
>> When device tree blob has no node properties requested by callers,
>> of_property_read_u32() returns minus value, then given argument is
>> not changed.
>
> This is probably fixed by a recent patch, please check with current code.

Aha, exactly. I should have sought mailing list archive.

http://mailman.alsa-project.org/pipermail/alsa-devel/2016-March/105419.html

> Please don't send cover latters for single patches, if they're needed
> they indicate that you need to improve the commit log for the change.

I used for this purpose. Anyway, OK.


Thanks

Takashi Sakamoto
diff mbox

Patch

diff --git a/sound/soc/codecs/cs35l32.c b/sound/soc/codecs/cs35l32.c
index 44c30fe..e464107 100644
--- a/sound/soc/codecs/cs35l32.c
+++ b/sound/soc/codecs/cs35l32.c
@@ -274,6 +274,7 @@  static int cs35l32_handle_of_data(struct i2c_client *i2c_client,
 	if (of_property_read_u32(np, "cirrus,sdout-share", &val) >= 0)
 		pdata->sdout_share = val;
 
+	val = UINT_MAX;
 	of_property_read_u32(np, "cirrus,boost-manager", &val);
 	switch (val) {
 	case CS35L32_BOOST_MGR_AUTO:
@@ -288,6 +289,7 @@  static int cs35l32_handle_of_data(struct i2c_client *i2c_client,
 		pdata->boost_mng = CS35L32_BOOST_MGR_BYPASS;
 	}
 
+	val = UINT_MAX;
 	of_property_read_u32(np, "cirrus,sdout-datacfg", &val);
 	switch (val) {
 	case CS35L32_DATA_CFG_LR_VP:
@@ -302,6 +304,7 @@  static int cs35l32_handle_of_data(struct i2c_client *i2c_client,
 		pdata->sdout_datacfg = CS35L32_DATA_CFG_LR;
 	}
 
+	val = UINT_MAX;
 	of_property_read_u32(np, "cirrus,battery-threshold", &val);
 	switch (val) {
 	case CS35L32_BATT_THRESH_3_1V:
@@ -316,6 +319,7 @@  static int cs35l32_handle_of_data(struct i2c_client *i2c_client,
 		pdata->batt_thresh = CS35L32_BATT_THRESH_3_3V;
 	}
 
+	val = UINT_MAX;
 	of_property_read_u32(np, "cirrus,battery-recovery", &val);
 	switch (val) {
 	case CS35L32_BATT_RECOV_3_1V: