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

Commit e2ffb77a authored by Andrzej Pietrasiewicz's avatar Andrzej Pietrasiewicz Committed by Nicholas Bellinger
Browse files

usb: gadget: tcm: simplify attribute store function

parent c8afb616
Loading
Loading
Loading
Loading
+7 −15
Original line number Diff line number Diff line
@@ -1503,27 +1503,19 @@ static ssize_t tcm_usbg_tpg_enable_store(struct config_item *item,
	if (ret)
		return ret;

	if (op && tpg->gadget_connect) {
		ret = -EINVAL;
		goto out;
	}
	if (!op && !tpg->gadget_connect) {
		ret = -EINVAL;
		goto out;
	}
	if ((op && tpg->gadget_connect) || (!op && !tpg->gadget_connect))
		return -EINVAL;

	if (op) {
	if (op)
		ret = usbg_attach(tpg);
		if (ret)
			goto out;
	} else {
	else
		usbg_detach(tpg);
	}
	if (ret)
		return ret;

	tpg->gadget_connect = op;

	return count;
out:
	return ret;
}

static ssize_t tcm_usbg_tpg_nexus_show(struct config_item *item, char *page)