[MTD] Make init_oct5066 function static
The function init_oct5066 is needlessly defined global in drivers/mtd/maps/octagon-5066.c. Make it static. Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
d8156adb7a
commit
d849257c42
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ void cleanup_oct5066(void)
|
||||||
release_region(PAGE_IO, 1);
|
release_region(PAGE_IO, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int __init init_oct5066(void)
|
static int __init init_oct5066(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
Loading…
Reference in a new issue