From: Marek Vasut Date: Sat, 14 Apr 2018 22:36:45 +0000 (+0200) Subject: mmc: Staticize sd_select_bus_width X-Git-Tag: v2018.05-rc3~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec360e64862ae0ab271296e786917e5f9a04e9fb;p=platform%2Fkernel%2Fu-boot.git mmc: Staticize sd_select_bus_width Staticize the function since it's only used in mmc.c . Signed-off-by: Marek Vasut Cc: Jaehoon Chung Cc: Tom Rini --- diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index c930893..f72b80c 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -1334,7 +1334,7 @@ static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode) return 0; } -int sd_select_bus_width(struct mmc *mmc, int w) +static int sd_select_bus_width(struct mmc *mmc, int w) { int err; struct mmc_cmd cmd;