staging: vt6656: rename vRunCommand to vnt_run_command
authorMalcolm Priestley <tvboxspy@gmail.com>
Sun, 13 Jul 2014 09:42:49 +0000 (10:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Jul 2014 19:22:34 +0000 (12:22 -0700)
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/main_usb.c
drivers/staging/vt6656/wcmd.c
drivers/staging/vt6656/wcmd.h

index 34b6148784cdb9aedcff0b71b67a9473a61a9aa1..d9b521063a84ba09b2b4526a3f171b8141e06758 100644 (file)
@@ -1111,7 +1111,7 @@ vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
        spin_lock_init(&priv->lock);
        mutex_init(&priv->usb_lock);
 
-       INIT_DELAYED_WORK(&priv->run_command_work, vRunCommand);
+       INIT_DELAYED_WORK(&priv->run_command_work, vnt_run_command);
 
        usb_set_intfdata(intf, priv);
 
index 87e682ddd8e4d00744e16aa3bdc6a061ca7d7ff1..864d5e59d362856baebd03156878ac334ec6b95b 100644 (file)
@@ -104,7 +104,7 @@ static int vnt_cmd_complete(struct vnt_private *priv)
        return true;
 }
 
-void vRunCommand(struct work_struct *work)
+void vnt_run_command(struct work_struct *work)
 {
        struct vnt_private *priv =
                container_of(work, struct vnt_private, run_command_work.work);
index a2943ab004e827f4d2bf6637933dd4b67374b122..783d6c9a6ccba2e3393a22159cb3816030aef19f 100644 (file)
@@ -63,6 +63,6 @@ void vResetCommandTimer(struct vnt_private *);
 
 int bScheduleCommand(struct vnt_private *, enum vnt_cmd, u8 *);
 
-void vRunCommand(struct work_struct *work);
+void vnt_run_command(struct work_struct *work);
 
 #endif /* __WCMD_H__ */
This page took 0.027351 seconds and 5 git commands to generate.