diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2012-10-29 13:34:44 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-11-04 11:00:37 -0700 |
commit | eafa90a16cb518ad3dad858d1782f9f816164fcc (patch) | |
tree | 64d3d262ab4758e7a8046f997819ba54da682549 | |
parent | fdbb873eb09dcb27aeb70242c1c85fbf57764a88 (diff) | |
download | u-boot-imx-eafa90a16cb518ad3dad858d1782f9f816164fcc.zip u-boot-imx-eafa90a16cb518ad3dad858d1782f9f816164fcc.tar.gz u-boot-imx-eafa90a16cb518ad3dad858d1782f9f816164fcc.tar.bz2 |
drivers/mmc/fsl_esdhc.c: sparse fixes
fsl_esdhc.c:71:6: warning: symbol 'esdhc_xfertyp' was not declared. Should it be static?
fsl_esdhc.c:413:6: warning: symbol 'set_sysctl' was not declared. Should it be st
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
-rw-r--r-- | drivers/mmc/fsl_esdhc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index 3f8d30d..301dd8c 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -68,7 +68,7 @@ struct fsl_esdhc { }; /* Return the XFERTYP flags for a given command and data packet */ -uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) +static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) { uint xfertyp = 0; @@ -410,7 +410,7 @@ esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) return 0; } -void set_sysctl(struct mmc *mmc, uint clock) +static void set_sysctl(struct mmc *mmc, uint clock) { int sdhc_clk = gd->sdhc_clk; int div, pre_div; |