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

Commit a3b0f9b9 authored by Emil Goode's avatar Emil Goode Committed by Greg Kroah-Hartman
Browse files

USB: EHCI: Remove double assignment of .start in ehci_msp_hc_driver



This patch removes a double assignment of .start in struct hc_driver
ehci_msp_hc_driver and also makes the code look more tidy.

Signed-off-by: default avatarEmil Goode <emilgoode@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4e5c9e6f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -292,7 +292,6 @@ static const struct hc_driver ehci_msp_hc_driver = {
	 * basic lifecycle operations
	 */
	.reset			= ehci_msp_setup,
	.start =		ehci_run,
	.shutdown		= ehci_shutdown,
	.start			= ehci_run,
	.stop			= ehci_stop,