aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2012-07-15 14:09:32 +0000
committerFlorian Fainelli <florian@openwrt.org>2012-07-15 14:09:32 +0000
commitd830eca387b8e6b9a73475f21b730300fe6041b2 (patch)
tree3404f6b10c39dbe3bfce9d172c73e434998d88f4
parent4b394c1b83538df5b8f932f90099138e679d2035 (diff)
downloadmaster-187ad058-d830eca387b8e6b9a73475f21b730300fe6041b2.tar.gz
master-187ad058-d830eca387b8e6b9a73475f21b730300fe6041b2.tar.bz2
master-187ad058-d830eca387b8e6b9a73475f21b730300fe6041b2.zip
[mcs814x] use ohci_err() instead of err()
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32729 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/mcs814x/files-3.3/drivers/usb/host/ohci-mcs814x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mcs814x/files-3.3/drivers/usb/host/ohci-mcs814x.c b/target/linux/mcs814x/files-3.3/drivers/usb/host/ohci-mcs814x.c
index 59ec7740d6..ef4cb5143e 100644
--- a/target/linux/mcs814x/files-3.3/drivers/usb/host/ohci-mcs814x.c
+++ b/target/linux/mcs814x/files-3.3/drivers/usb/host/ohci-mcs814x.c
@@ -96,7 +96,7 @@ static int __devinit ohci_mcs814x_start(struct usb_hcd *hcd)
ret = ohci_run(ohci);
if (ret < 0) {
- err("can't start %s", hcd->self.bus_name);
+ ohci_err(ohci, "can't start %s", hcd->self.bus_name);
ohci_stop(hcd);
return ret;
}