diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-27 20:24:42 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-27 20:24:42 +0200 |
commit | fc6d9ec564f18d83158732e8faebeb73e26a8274 (patch) | |
tree | 404251bda3722b1cf247caf671eb62e726ef0d72 /drivers/usb/host/ohci-ppc-soc.c | |
parent | USB: ohci-ppc-of.c: remove err() usage (diff) | |
download | linux-fc6d9ec564f18d83158732e8faebeb73e26a8274.tar.xz linux-fc6d9ec564f18d83158732e8faebeb73e26a8274.zip |
USB: ohci-ppc-soc.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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ohci-ppc-soc.c')
-rw-r--r-- | drivers/usb/host/ohci-ppc-soc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-ppc-soc.c b/drivers/usb/host/ohci-ppc-soc.c index 1514b7067470..185c39ed81b7 100644 --- a/drivers/usb/host/ohci-ppc-soc.c +++ b/drivers/usb/host/ohci-ppc-soc.c @@ -130,7 +130,8 @@ ohci_ppc_soc_start(struct usb_hcd *hcd) return ret; if ((ret = ohci_run(ohci)) < 0) { - err("can't start %s", ohci_to_hcd(ohci)->self.bus_name); + dev_err(hcd->self.controller, "can't start %s\n", + hcd->self.bus_name); ohci_stop(hcd); return ret; } |