diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-26 02:27:01 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-08-24 21:37:55 -0400 |
commit | 51b2fcef499b43c6684e05eb23c8fa65eccb3490 (patch) | |
tree | 43c5af3f678e5933b3ef769868f8bdea364f201a | |
parent | 6d1d6b4759112acf4c079eb3a0dd296bdbf61cf5 (diff) |
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>
-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) | |||
119 | return byte; | 119 | return byte; |
120 | } | 120 | } |
121 | 121 | ||
122 | unsigned int bcm2835_sdhci_get_min_clock(struct sdhci_host *host) | 122 | static unsigned int bcm2835_sdhci_get_min_clock(struct sdhci_host *host) |
123 | { | 123 | { |
124 | return MIN_FREQ; | 124 | return MIN_FREQ; |
125 | } | 125 | } |