From: Jeroen Hofstee Date: Wed, 8 Oct 2014 20:57:33 +0000 (+0200) Subject: disk/part.c: make local function static X-Git-Tag: KARO-TXA5-2015-06-26~482 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=76ee65bde2ea3cf89be7cddacf2c1893d49e20fc;p=karo-tx-uboot.git disk/part.c: make local function static Signed-off-by: Jeroen Hofstee --- diff --git a/disk/part.c b/disk/part.c index cfd77b0ff5..43485c9148 100644 --- a/disk/part.c +++ b/disk/part.c @@ -57,7 +57,7 @@ static const struct block_drvr block_drvr[] = { DECLARE_GLOBAL_DATA_PTR; #ifdef HAVE_BLOCK_DEVICE -block_dev_desc_t *get_dev_hwpart(const char *ifname, int dev, int hwpart) +static block_dev_desc_t *get_dev_hwpart(const char *ifname, int dev, int hwpart) { const struct block_drvr *drvr = block_drvr; block_dev_desc_t* (*reloc_get_dev)(int dev);