diff options
Diffstat (limited to 'drivers/usb/chipidea')
| -rw-r--r-- | drivers/usb/chipidea/debug.c | 6 | ||||
| -rw-r--r-- | drivers/usb/chipidea/otg_fsm.c | 4 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/drivers/usb/chipidea/debug.c b/drivers/usb/chipidea/debug.c index dfb05edcdb96..5b7061a33103 100644 --- a/drivers/usb/chipidea/debug.c +++ b/drivers/usb/chipidea/debug.c @@ -88,9 +88,13 @@ static ssize_t ci_port_test_write(struct file *file, const char __user *ubuf,  	char buf[32];  	int ret; -	if (copy_from_user(buf, ubuf, min_t(size_t, sizeof(buf) - 1, count))) +	count = min_t(size_t, sizeof(buf) - 1, count); +	if (copy_from_user(buf, ubuf, count))  		return -EFAULT; +	/* sscanf requires a zero terminated string */ +	buf[count] = '\0'; +  	if (sscanf(buf, "%u", &mode) != 1)  		return -EINVAL; diff --git a/drivers/usb/chipidea/otg_fsm.c b/drivers/usb/chipidea/otg_fsm.c index 083acf45ad5a..19d655a743b5 100644 --- a/drivers/usb/chipidea/otg_fsm.c +++ b/drivers/usb/chipidea/otg_fsm.c @@ -520,7 +520,6 @@ static int ci_otg_start_host(struct otg_fsm *fsm, int on)  {  	struct ci_hdrc	*ci = container_of(fsm, struct ci_hdrc, fsm); -	mutex_unlock(&fsm->lock);  	if (on) {  		ci_role_stop(ci);  		ci_role_start(ci, CI_ROLE_HOST); @@ -529,7 +528,6 @@ static int ci_otg_start_host(struct otg_fsm *fsm, int on)  		hw_device_reset(ci);  		ci_role_start(ci, CI_ROLE_GADGET);  	} -	mutex_lock(&fsm->lock);  	return 0;  } @@ -537,12 +535,10 @@ static int ci_otg_start_gadget(struct otg_fsm *fsm, int on)  {  	struct ci_hdrc	*ci = container_of(fsm, struct ci_hdrc, fsm); -	mutex_unlock(&fsm->lock);  	if (on)  		usb_gadget_vbus_connect(&ci->gadget);  	else  		usb_gadget_vbus_disconnect(&ci->gadget); -	mutex_lock(&fsm->lock);  	return 0;  } |