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

Commit 05a7929f authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Paul Mundt
Browse files

ARM: mach-shmobile: mackerel: tidyup usbhs driver settings



- usb0 pipe is same as default. own pipe config is not needed
- usb1 lost get_id function

Signed-off-by: default avatarKuninori Morimoto <morimoto.kuninori@renesas.com>
Acked-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 31105725
Loading
Loading
Loading
Loading
+6 −15
Original line number Original line Diff line number Diff line
@@ -629,19 +629,6 @@ static void usbhs0_hardware_exit(struct platform_device *pdev)
	cancel_delayed_work_sync(&priv->work);
	cancel_delayed_work_sync(&priv->work);
}
}


static u32 usbhs0_pipe_cfg[] = {
	USB_ENDPOINT_XFER_CONTROL,
	USB_ENDPOINT_XFER_ISOC,
	USB_ENDPOINT_XFER_ISOC,
	USB_ENDPOINT_XFER_BULK,
	USB_ENDPOINT_XFER_BULK,
	USB_ENDPOINT_XFER_BULK,
	USB_ENDPOINT_XFER_INT,
	USB_ENDPOINT_XFER_INT,
	USB_ENDPOINT_XFER_INT,
	USB_ENDPOINT_XFER_BULK,
};

static struct usbhs_private usbhs0_private = {
static struct usbhs_private usbhs0_private = {
	.usbcrcaddr	= 0xe605810c,		/* USBCR2 */
	.usbcrcaddr	= 0xe605810c,		/* USBCR2 */
	.info = {
	.info = {
@@ -654,8 +641,6 @@ static struct usbhs_private usbhs0_private = {
		},
		},
		.driver_param = {
		.driver_param = {
			.buswait_bwait	= 4,
			.buswait_bwait	= 4,
			.pipe_type	= usbhs0_pipe_cfg,
			.pipe_size	= ARRAY_SIZE(usbhs0_pipe_cfg),
		},
		},
	},
	},
};
};
@@ -786,6 +771,11 @@ static void usbhs1_hardware_exit(struct platform_device *pdev)
	free_irq(IRQ8, pdev);
	free_irq(IRQ8, pdev);
}
}


static int usbhs1_get_id(struct platform_device *pdev)
{
	return USBHS_GADGET;
}

static u32 usbhs1_pipe_cfg[] = {
static u32 usbhs1_pipe_cfg[] = {
	USB_ENDPOINT_XFER_CONTROL,
	USB_ENDPOINT_XFER_CONTROL,
	USB_ENDPOINT_XFER_ISOC,
	USB_ENDPOINT_XFER_ISOC,
@@ -812,6 +802,7 @@ static struct usbhs_private usbhs1_private = {
		.platform_callback = {
		.platform_callback = {
			.hardware_init	= usbhs1_hardware_init,
			.hardware_init	= usbhs1_hardware_init,
			.hardware_exit	= usbhs1_hardware_exit,
			.hardware_exit	= usbhs1_hardware_exit,
			.get_id		= usbhs1_get_id,
			.phy_reset	= usbhs_phy_reset,
			.phy_reset	= usbhs_phy_reset,
			.get_vbus	= usbhs_get_vbus,
			.get_vbus	= usbhs_get_vbus,
		},
		},