From: Jisheng Zhang Date: Wed, 28 Jan 2015 11:54:12 +0000 (+0800) Subject: mmc: sdhci-pxav3: fix setting of pdata->clk_delay_cycles X-Git-Tag: fixes-v4.0-rc1~141^2~16 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14460dbaf7a5a0488963fdb8232ad5c8a8cca7b7;p=pandora-kernel.git mmc: sdhci-pxav3: fix setting of pdata->clk_delay_cycles Current code checks "clk_delay_cycles > 0" to know whether the optional "mrvl,clk_delay_cycles" is set or not. But of_property_read_u32() doesn't touch clk_delay_cycles if the property is not set. And type of clk_delay_cycles is u32, so we may always set pdata->clk_delay_cycles as a random value. This patch fix this problem by check the return value of of_property_read_u32() to know whether the optional clk-delay-cycles is set or not. Signed-off-by: Jisheng Zhang Cc: # v3.6+ Signed-off-by: Ulf Hansson --- Reading git-diff-tree failed