Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e5065db authored by Himanshu Chauhan's avatar Himanshu Chauhan Committed by Greg Kroah-Hartman
Browse files

Staging: usbip: minor code cleanup

parent 22e0967f
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -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,
static ssize_t store_flag(struct device *dev, struct device_attribute *attr,
		const char *buf, size_t count)
		const char *buf, size_t count)
{
{
	unsigned long flag;
	sscanf(buf, "%lx", &usbip_debug_flag);

	sscanf(buf, "%lx", &flag);
	usbip_debug_flag = flag;


	return count;
	return count;
}
}