mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 05:50:53 +07:00
[MTD] Make uclinux_mtd_cleanup and uclinux_mtd_init static
The functions uclinux_mtd_cleanup and uclinux_mtd_init do not heed to be global. Add the needed keyword to the file drivers/mtd/maps/uclinux.c to make these functions 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
e4582ea71c
commit
769455e224
@ -51,7 +51,7 @@ int uclinux_point(struct mtd_info *mtd, loff_t from, size_t len,
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
int __init uclinux_mtd_init(void)
|
||||
static int __init uclinux_mtd_init(void)
|
||||
{
|
||||
struct mtd_info *mtd;
|
||||
struct map_info *mapp;
|
||||
@ -94,7 +94,7 @@ int __init uclinux_mtd_init(void)
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
void __exit uclinux_mtd_cleanup(void)
|
||||
static void __exit uclinux_mtd_cleanup(void)
|
||||
{
|
||||
if (uclinux_ram_mtdinfo) {
|
||||
del_mtd_partitions(uclinux_ram_mtdinfo);
|
||||
|
Loading…
Reference in New Issue
Block a user