Commit dab56ffe authored by Marek Belisko's avatar Marek Belisko Committed by Greg Kroah-Hartman

staging: ft1000: Fix camelcase function names.

Signed-off-by: default avatarMarek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8c3d9092
...@@ -201,7 +201,7 @@ static struct notifier_block ft1000_netdev_notifier = { ...@@ -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 ft1000_info *info;
struct proc_dir_entry *ft1000_proc_file; struct proc_dir_entry *ft1000_proc_file;
...@@ -243,7 +243,7 @@ int ft1000InitProc(struct net_device *dev) ...@@ -243,7 +243,7 @@ int ft1000InitProc(struct net_device *dev)
return ret; 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(info->netdevname, info->ft1000_proc_dir);
remove_proc_entry(FT1000_PROC_DIR, FTNET_PROC); remove_proc_entry(FT1000_PROC_DIR, FTNET_PROC);
......
...@@ -198,7 +198,7 @@ static int ft1000_probe(struct usb_interface *interface, ...@@ -198,7 +198,7 @@ static int ft1000_probe(struct usb_interface *interface,
if (ret) if (ret)
goto err_thread; goto err_thread;
ret = ft1000InitProc(ft1000dev->net); ret = ft1000_init_proc(ft1000dev->net);
if (ret) if (ret)
goto err_proc; goto err_proc;
...@@ -228,7 +228,7 @@ static void ft1000_disconnect(struct usb_interface *interface) ...@@ -228,7 +228,7 @@ static void ft1000_disconnect(struct usb_interface *interface)
DEBUG("In disconnect pft1000info=%p\n", pft1000info); DEBUG("In disconnect pft1000info=%p\n", pft1000info);
if (pft1000info) { if (pft1000info) {
ft1000CleanupProc(pft1000info); ft1000_cleanup_proc(pft1000info);
if (pft1000info->pPollThread) if (pft1000info->pPollThread)
kthread_stop(pft1000info->pPollThread); kthread_stop(pft1000info->pPollThread);
......
...@@ -594,8 +594,8 @@ struct usb_interface; ...@@ -594,8 +594,8 @@ struct usb_interface;
int reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf); int reg_ft1000_netdev(struct ft1000_device *ft1000dev, struct usb_interface *intf);
int ft1000_poll(void* dev_id); int ft1000_poll(void* dev_id);
int ft1000InitProc(struct net_device *dev); int ft1000_init_proc(struct net_device *dev);
void ft1000CleanupProc(struct ft1000_info *info); void ft1000_cleanup_proc(struct ft1000_info *info);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment