diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-10-04 22:59:23 -0300 |
---|---|---|
committer | Chris Ball <chris@printf.net> | 2014-01-13 12:48:14 -0500 |
commit | a50145f925c722dd74e18758fe4d9da9eb4c72ed (patch) | |
tree | 16a6b42c71a1a60d889bd1efbc1c5143682bc65a /drivers/mmc | |
parent | 63c211803a272d59dcb11af82ad0364b3d1d2a2e (diff) |
mmc: sdhci-esdhc-imx: Use NULL instead of zero
Fix the following sparse warning:
drivers/mmc/host/sdhci-esdhc-imx.c:617:35: warning: Using plain integer as NULL pointer
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-esdhc-imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index fa9c1b26e85..de2655e0db2 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -718,7 +718,7 @@ static void esdhc_request_done(struct mmc_request *mrq) static int esdhc_send_tuning_cmd(struct sdhci_host *host, u32 opcode) { struct mmc_command cmd = {0}; - struct mmc_request mrq = {0}; + struct mmc_request mrq = {NULL}; struct mmc_data data = {0}; struct scatterlist sg; char tuning_pattern[ESDHC_TUNING_BLOCK_PATTERN_LEN]; |