diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-26 08:27:01 +0200 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-08-25 03:37:55 +0200 |
commit | 51b2fcef499b43c6684e05eb23c8fa65eccb3490 (patch) | |
tree | 43c5af3f678e5933b3ef769868f8bdea364f201a /drivers | |
parent | mmc: tmio: fix compiler warning (diff) | |
download | linux-51b2fcef499b43c6684e05eb23c8fa65eccb3490.tar.xz linux-51b2fcef499b43c6684e05eb23c8fa65eccb3490.zip |
mmc: sdhci-bcm2835: Staticize bcm2835_sdhci_get_min_clock
'bcm2835_sdhci_get_min_clock' is used only in this file.
Make it static.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/host/sdhci-bcm2835.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-bcm2835.c b/drivers/mmc/host/sdhci-bcm2835.c index 0584a1c788b8..36fa2df04660 100644 --- a/drivers/mmc/host/sdhci-bcm2835.c +++ b/drivers/mmc/host/sdhci-bcm2835.c @@ -119,7 +119,7 @@ static u8 bcm2835_sdhci_readb(struct sdhci_host *host, int reg) return byte; } -unsigned int bcm2835_sdhci_get_min_clock(struct sdhci_host *host) +static unsigned int bcm2835_sdhci_get_min_clock(struct sdhci_host *host) { return MIN_FREQ; } |