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

Commit a0dd6773 authored by Colin Ian King's avatar Colin Ian King Committed by Kishon Vijay Abraham I
Browse files

phy: tegra: remove redundant self assignment of 'map'



The assignment of map to itself is redundant and can be removed.
Detected with Coccinelle.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent 7928b2cb
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -418,7 +418,7 @@ tegra_xusb_port_find_lane(struct tegra_xusb_port *port,
{
{
	struct tegra_xusb_lane *lane, *match = ERR_PTR(-ENODEV);
	struct tegra_xusb_lane *lane, *match = ERR_PTR(-ENODEV);


	for (map = map; map->type; map++) {
	for (; map->type; map++) {
		if (port->index != map->port)
		if (port->index != map->port)
			continue;
			continue;