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

Commit ceb0c77e authored by Oliver Neukum's avatar Oliver Neukum Committed by David S. Miller
Browse files

usb: remove rare pm primitive for conversion to new API



This patch removes a rare use of the USB power management API which
won't be supported after the conversion to the new generic runtime power
management framework. Functionality is not altered.

Signed-off-by: default avatarOliver Neukum <oliver@neukum.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 50170656
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -716,7 +716,7 @@ static int kaweth_open(struct net_device *net)
	return 0;

err_out:
	usb_autopm_enable(kaweth->intf);
	usb_autopm_put_interface(kaweth->intf);
	return -EIO;
}

@@ -753,7 +753,7 @@ static int kaweth_close(struct net_device *net)

	kaweth->status &= ~KAWETH_STATUS_CLOSING;

	usb_autopm_enable(kaweth->intf);
	usb_autopm_put_interface(kaweth->intf);

	return 0;
}