mtd: mtdcore: export symbols cleanup
The mtdcore.c file is a bit inconsistent - some EXPORT_SYMBOL_GPL declarations follow the corresponding functions, some are placed at the end. This patch harmonizes the file so that EXPORT_SYMBOL_GPL declarations follow the corresponding function. It also removes few extra newlines and trailing white-spaces. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
Родитель
52b020317f
Коммит
33c87b4a2c
|
@ -128,7 +128,7 @@ static int mtd_cls_suspend(struct device *dev, pm_message_t state)
|
||||||
static int mtd_cls_resume(struct device *dev)
|
static int mtd_cls_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct mtd_info *mtd = dev_get_drvdata(dev);
|
struct mtd_info *mtd = dev_get_drvdata(dev);
|
||||||
|
|
||||||
if (mtd && mtd->resume)
|
if (mtd && mtd->resume)
|
||||||
mtd_resume(mtd);
|
mtd_resume(mtd);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -517,7 +517,6 @@ EXPORT_SYMBOL_GPL(mtd_device_unregister);
|
||||||
* or removal of MTD devices. Causes the 'add' callback to be immediately
|
* or removal of MTD devices. Causes the 'add' callback to be immediately
|
||||||
* invoked for each MTD device currently present in the system.
|
* invoked for each MTD device currently present in the system.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void register_mtd_user (struct mtd_notifier *new)
|
void register_mtd_user (struct mtd_notifier *new)
|
||||||
{
|
{
|
||||||
struct mtd_info *mtd;
|
struct mtd_info *mtd;
|
||||||
|
@ -533,6 +532,7 @@ void register_mtd_user (struct mtd_notifier *new)
|
||||||
|
|
||||||
mutex_unlock(&mtd_table_mutex);
|
mutex_unlock(&mtd_table_mutex);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(register_mtd_user);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* unregister_mtd_user - unregister a 'user' of MTD devices.
|
* unregister_mtd_user - unregister a 'user' of MTD devices.
|
||||||
|
@ -543,7 +543,6 @@ void register_mtd_user (struct mtd_notifier *new)
|
||||||
* 'remove' callback to be immediately invoked for each MTD device
|
* 'remove' callback to be immediately invoked for each MTD device
|
||||||
* currently present in the system.
|
* currently present in the system.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int unregister_mtd_user (struct mtd_notifier *old)
|
int unregister_mtd_user (struct mtd_notifier *old)
|
||||||
{
|
{
|
||||||
struct mtd_info *mtd;
|
struct mtd_info *mtd;
|
||||||
|
@ -559,7 +558,7 @@ int unregister_mtd_user (struct mtd_notifier *old)
|
||||||
mutex_unlock(&mtd_table_mutex);
|
mutex_unlock(&mtd_table_mutex);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(unregister_mtd_user);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get_mtd_device - obtain a validated handle for an MTD device
|
* get_mtd_device - obtain a validated handle for an MTD device
|
||||||
|
@ -572,7 +571,6 @@ int unregister_mtd_user (struct mtd_notifier *old)
|
||||||
* both, return the num'th driver only if its address matches. Return
|
* both, return the num'th driver only if its address matches. Return
|
||||||
* error code if not.
|
* error code if not.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
|
struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
|
||||||
{
|
{
|
||||||
struct mtd_info *ret = NULL, *other;
|
struct mtd_info *ret = NULL, *other;
|
||||||
|
@ -605,6 +603,7 @@ out:
|
||||||
mutex_unlock(&mtd_table_mutex);
|
mutex_unlock(&mtd_table_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(get_mtd_device);
|
||||||
|
|
||||||
|
|
||||||
int __get_mtd_device(struct mtd_info *mtd)
|
int __get_mtd_device(struct mtd_info *mtd)
|
||||||
|
@ -625,6 +624,7 @@ int __get_mtd_device(struct mtd_info *mtd)
|
||||||
mtd->usecount++;
|
mtd->usecount++;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(__get_mtd_device);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get_mtd_device_nm - obtain a validated handle for an MTD device by
|
* get_mtd_device_nm - obtain a validated handle for an MTD device by
|
||||||
|
@ -634,7 +634,6 @@ int __get_mtd_device(struct mtd_info *mtd)
|
||||||
* This function returns MTD device description structure in case of
|
* This function returns MTD device description structure in case of
|
||||||
* success and an error code in case of failure.
|
* success and an error code in case of failure.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct mtd_info *get_mtd_device_nm(const char *name)
|
struct mtd_info *get_mtd_device_nm(const char *name)
|
||||||
{
|
{
|
||||||
int err = -ENODEV;
|
int err = -ENODEV;
|
||||||
|
@ -663,6 +662,7 @@ out_unlock:
|
||||||
mutex_unlock(&mtd_table_mutex);
|
mutex_unlock(&mtd_table_mutex);
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(get_mtd_device_nm);
|
||||||
|
|
||||||
void put_mtd_device(struct mtd_info *mtd)
|
void put_mtd_device(struct mtd_info *mtd)
|
||||||
{
|
{
|
||||||
|
@ -671,6 +671,7 @@ void put_mtd_device(struct mtd_info *mtd)
|
||||||
mutex_unlock(&mtd_table_mutex);
|
mutex_unlock(&mtd_table_mutex);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(put_mtd_device);
|
||||||
|
|
||||||
void __put_mtd_device(struct mtd_info *mtd)
|
void __put_mtd_device(struct mtd_info *mtd)
|
||||||
{
|
{
|
||||||
|
@ -682,6 +683,7 @@ void __put_mtd_device(struct mtd_info *mtd)
|
||||||
|
|
||||||
module_put(mtd->owner);
|
module_put(mtd->owner);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(__put_mtd_device);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* default_mtd_writev - the default writev method
|
* default_mtd_writev - the default writev method
|
||||||
|
@ -714,6 +716,7 @@ int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
|
||||||
*retlen = totlen;
|
*retlen = totlen;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(default_mtd_writev);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* mtd_kmalloc_up_to - allocate a contiguous buffer up to the specified size
|
* mtd_kmalloc_up_to - allocate a contiguous buffer up to the specified size
|
||||||
|
@ -763,15 +766,6 @@ void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size)
|
||||||
*/
|
*/
|
||||||
return kmalloc(*size, GFP_KERNEL);
|
return kmalloc(*size, GFP_KERNEL);
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL_GPL(get_mtd_device);
|
|
||||||
EXPORT_SYMBOL_GPL(get_mtd_device_nm);
|
|
||||||
EXPORT_SYMBOL_GPL(__get_mtd_device);
|
|
||||||
EXPORT_SYMBOL_GPL(put_mtd_device);
|
|
||||||
EXPORT_SYMBOL_GPL(__put_mtd_device);
|
|
||||||
EXPORT_SYMBOL_GPL(register_mtd_user);
|
|
||||||
EXPORT_SYMBOL_GPL(unregister_mtd_user);
|
|
||||||
EXPORT_SYMBOL_GPL(default_mtd_writev);
|
|
||||||
EXPORT_SYMBOL_GPL(mtd_kmalloc_up_to);
|
EXPORT_SYMBOL_GPL(mtd_kmalloc_up_to);
|
||||||
|
|
||||||
#ifdef CONFIG_PROC_FS
|
#ifdef CONFIG_PROC_FS
|
||||||
|
|
Загрузка…
Ссылка в новой задаче