Commit 592365ae authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: rename vRunCommand to vnt_run_command

parent 2cd98cd5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1111,7 +1111,7 @@ vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
	spin_lock_init(&priv->lock);
	spin_lock_init(&priv->lock);
	mutex_init(&priv->usb_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);
	usb_set_intfdata(intf, priv);


+1 −1
Original line number Original line Diff line number Diff line
@@ -104,7 +104,7 @@ static int vnt_cmd_complete(struct vnt_private *priv)
	return true;
	return true;
}
}


void vRunCommand(struct work_struct *work)
void vnt_run_command(struct work_struct *work)
{
{
	struct vnt_private *priv =
	struct vnt_private *priv =
		container_of(work, struct vnt_private, run_command_work.work);
		container_of(work, struct vnt_private, run_command_work.work);
+1 −1
Original line number Original line Diff line number Diff line
@@ -63,6 +63,6 @@ void vResetCommandTimer(struct vnt_private *);


int bScheduleCommand(struct vnt_private *, enum vnt_cmd, u8 *);
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__ */
#endif /* __WCMD_H__ */