diff options
author | Manish Narani <[email protected]> | 2021-06-15 16:13:56 +0530 |
---|---|---|
committer | Ulf Hansson <[email protected]> | 2021-08-24 10:15:29 +0200 |
commit | 4dd7080a78925ff293f1ded598b2010bd4ed3729 (patch) | |
tree | 44c7523293c4bc9e01820ead9a1c21a126148185 | |
parent | 462f58fdb8c0277a49c01831bf4dc8405c37ddaf (diff) |
mmc: sdhci-of-arasan: Modify data type of the clk_phase array
Modify the data type of the clk_phase array to u32 to make it compatible
with the argument requirement of "of_property_read_variable_u32_array".
Addresses-coverity: ("incompatible_param")
Signed-off-by: Manish Narani <[email protected]>
Acked-by: Adrian Hunter <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r-- | drivers/mmc/host/sdhci-of-arasan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c index fbcb9b070351..ba425b9563bf 100644 --- a/drivers/mmc/host/sdhci-of-arasan.c +++ b/drivers/mmc/host/sdhci-of-arasan.c @@ -1018,7 +1018,7 @@ static void arasan_dt_read_clk_phase(struct device *dev, { struct device_node *np = dev->of_node; - int clk_phase[2] = {0}; + u32 clk_phase[2] = {0}; /* * Read Tap Delay values from DT, if the DT does not contain the |