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

Commit 15ef0cc1 authored by Nitin Kuppelur's avatar Nitin Kuppelur Committed by Greg Kroah-Hartman
Browse files

Staging: octeon-hcd: removed dummy label



This is a patch to the octeon-hcd.c file that fixes
removes dummy label i.e. label followed by return of
void function

Signed-off-by: default avatarNitin Kuppelur <nitinkuppelur@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 93a9f05a
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -2253,7 +2253,7 @@ static void __cvmx_usb_perform_complete(
			/* Increment to the next location in our packet array */
			/* Increment to the next location in our packet array */
			transaction->iso_packets++;
			transaction->iso_packets++;
			transaction->stage = CVMX_USB_STAGE_NON_CONTROL;
			transaction->stage = CVMX_USB_STAGE_NON_CONTROL;
			goto done;
			return;
		}
		}
	}
	}


@@ -2266,8 +2266,6 @@ static void __cvmx_usb_perform_complete(
					 transaction->actual_bytes,
					 transaction->actual_bytes,
					 transaction->urb);
					 transaction->urb);
	kfree(transaction);
	kfree(transaction);
done:
	return;
}
}