diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-27 14:24:42 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-27 14:24:42 -0400 |
commit | fc6d9ec564f18d83158732e8faebeb73e26a8274 (patch) | |
tree | 404251bda3722b1cf247caf671eb62e726ef0d72 /drivers/usb | |
parent | 1d55b768c6f5c6a0461a31ae33c0b2bdb686562d (diff) |
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')
-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) | |||
130 | return ret; | 130 | return ret; |
131 | 131 | ||
132 | if ((ret = ohci_run(ohci)) < 0) { | 132 | if ((ret = ohci_run(ohci)) < 0) { |
133 | err("can't start %s", ohci_to_hcd(ohci)->self.bus_name); | 133 | dev_err(hcd->self.controller, "can't start %s\n", |
134 | hcd->self.bus_name); | ||
134 | ohci_stop(hcd); | 135 | ohci_stop(hcd); |
135 | return ret; | 136 | return ret; |
136 | } | 137 | } |