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

Commit 7c9c3c7e authored by Felipe Balbi's avatar Felipe Balbi
Browse files

usb: gadget: mv_u3d_core: don't assign gadget.dev.release directly



udc-core provides a better way to handle release
methods, let's use it.

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 4b282fbe
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -1756,11 +1756,6 @@ static irqreturn_t mv_u3d_irq(int irq, void *dev)
	return IRQ_HANDLED;
}

static void mv_u3d_gadget_release(struct device *dev)
{
	dev_dbg(dev, "%s\n", __func__);
}

static int mv_u3d_remove(struct platform_device *dev)
{
	struct mv_u3d *u3d = platform_get_drvdata(dev);
@@ -1953,7 +1948,6 @@ static int mv_u3d_probe(struct platform_device *dev)
	u3d->gadget.speed = USB_SPEED_UNKNOWN;	/* speed */

	/* the "gadget" abstracts/virtualizes the controller */
	u3d->gadget.dev.release = mv_u3d_gadget_release;
	u3d->gadget.name = driver_name;		/* gadget name */

	mv_u3d_eps_init(u3d);