Commit bd0c092b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: ohci-cns3xxx.c: remove err() usage



err() was a very old USB-specific macro that I thought had
gone away.  This patch removes it from being used in the
driver and uses dev_err() instead.

CC: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2418d5f9
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -41,7 +41,8 @@ cns3xxx_ohci_start(struct usb_hcd *hcd)


	ret = ohci_run(ohci);
	ret = ohci_run(ohci);
	if (ret < 0) {
	if (ret < 0) {
		err("can't start %s", hcd->self.bus_name);
		dev_err(hcd->self.controller, "can't start %s\n",
			hcd->self.bus_name);
		ohci_stop(hcd);
		ohci_stop(hcd);
		return ret;
		return ret;
	}
	}