staging: ft1000: Fix camelcase function names.
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8c3d909216
commit
dab56ffe9a
@@ -201,7 +201,7 @@ static struct notifier_block ft1000_netdev_notifier = {
|
||||
};
|
||||
|
||||
|
||||
int ft1000InitProc(struct net_device *dev)
|
||||
int ft1000_init_proc(struct net_device *dev)
|
||||
{
|
||||
struct ft1000_info *info;
|
||||
struct proc_dir_entry *ft1000_proc_file;
|
||||
@@ -243,7 +243,7 @@ fail:
|
||||
return ret;
|
||||
}
|
||||
|
||||
void ft1000CleanupProc(struct ft1000_info *info)
|
||||
void ft1000_cleanup_proc(struct ft1000_info *info)
|
||||
{
|
||||
remove_proc_entry(info->netdevname, info->ft1000_proc_dir);
|
||||
remove_proc_entry(FT1000_PROC_DIR, FTNET_PROC);
|
||||
|
||||
@@ -198,7 +198,7 @@ static int ft1000_probe(struct usb_interface *interface,
|
||||
if (ret)
|
||||
goto err_thread;
|
||||
|
||||
ret = ft1000InitProc(ft1000dev->net);
|
||||
ret = ft1000_init_proc(ft1000dev->net);
|
||||
if (ret)
|
||||
goto err_proc;
|
||||
|
||||
@@ -228,7 +228,7 @@ static void ft1000_disconnect(struct usb_interface *interface)
|
||||
DEBUG("In disconnect pft1000info=%p\n", pft1000info);
|
||||
|
||||
if (pft1000info) {
|
||||
ft1000CleanupProc(pft1000info);
|
||||
ft1000_cleanup_proc(pft1000info);
|
||||
if (pft1000info->pPollThread)
|
||||
kthread_stop(pft1000info->pPollThread);
|
||||
|
||||
|
||||
@@ -594,8 +594,8 @@ struct usb_interface;
|
||||
int reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf);
|
||||
int ft1000_poll(void* dev_id);
|
||||
|
||||
int ft1000InitProc(struct net_device *dev);
|
||||
void ft1000CleanupProc(struct ft1000_info *info);
|
||||
int ft1000_init_proc(struct net_device *dev);
|
||||
void ft1000_cleanup_proc(struct ft1000_info *info);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user