
12 Jun
2017
12 Jun
'17
11:50 a.m.
The type should be int, not u8. cfg->wp_enable will finally be assigned to priv->wp_enable whose type is int.
Signed-off-by: Peng Fan peng.fan@nxp.com ---
V4: new
include/fsl_esdhc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/fsl_esdhc.h b/include/fsl_esdhc.h index e15d3ae..5550e00 100644 --- a/include/fsl_esdhc.h +++ b/include/fsl_esdhc.h @@ -177,7 +177,7 @@ struct fsl_esdhc_cfg { phys_addr_t esdhc_base; u32 sdhc_clk; u8 max_bus_width; - u8 wp_enable; + int wp_enable; struct mmc_config cfg; };
--
2.6.2