From: Adrian Bunk Date: Sun, 13 Apr 2008 18:15:47 +0000 (+0300) Subject: mmc: make __mmc_release_bus() static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=261172fd1b23769bc7632047e2cb826c9b8b1a50;p=linux-beck.git mmc: make __mmc_release_bus() static This patch makes the needlessly global __mmc_release_bus() static. Signed-off-by: Adrian Bunk Signed-off-by: Pierre Ossman --- diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index b96667448eb5..ab91b02b2bff 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -516,7 +516,7 @@ static void mmc_power_off(struct mmc_host *host) /* * Cleanup when the last reference to the bus operator is dropped. */ -void __mmc_release_bus(struct mmc_host *host) +static void __mmc_release_bus(struct mmc_host *host) { BUG_ON(!host); BUG_ON(host->bus_refs);