mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
mmc: uniphier-sd: add static qualifiers to probe and remove callbacks
They are both only referenced in this file. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
da968c7bfa
commit
4a70d26223
1 changed files with 2 additions and 2 deletions
|
|
@ -646,7 +646,7 @@ static const struct mmc_ops uniphier_sd_ops = {
|
|||
.getcd = uniphier_sd_getcd,
|
||||
};
|
||||
|
||||
int uniphier_sd_probe(struct udevice *dev)
|
||||
static int uniphier_sd_probe(struct udevice *dev)
|
||||
{
|
||||
struct uniphier_sd_priv *priv = dev_get_priv(dev);
|
||||
struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
|
||||
|
|
@ -731,7 +731,7 @@ int uniphier_sd_probe(struct udevice *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int uniphier_sd_remove(struct udevice *dev)
|
||||
static int uniphier_sd_remove(struct udevice *dev)
|
||||
{
|
||||
struct uniphier_sd_priv *priv = dev_get_priv(dev);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue