1
0
Fork 0

Staging: usbip: minor code cleanup

Signed-off-by: Himanshu Chauhan <himanshu@symmetricore.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Himanshu Chauhan 2010-01-23 01:51:57 +05:30 committed by Greg Kroah-Hartman
parent 22e0967f72
commit 1e5065dbd6
1 changed files with 1 additions and 4 deletions

View File

@ -55,10 +55,7 @@ static ssize_t show_flag(struct device *dev, struct device_attribute *attr,
static ssize_t store_flag(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
unsigned long flag;
sscanf(buf, "%lx", &flag);
usbip_debug_flag = flag;
sscanf(buf, "%lx", &usbip_debug_flag);
return count;
}