summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorWolfram Sang <wsa-dev@sang-engineering.com>2016-08-11 23:03:53 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2016-09-26 21:31:09 +0200
commitd51c50525f0a4c6b58fdd493a933017c62d98731 (patch)
treed8112eac21ed8eb6314bcbed169010ab73d19e24 /drivers/mmc
parent150d4240254be03aafb2a86c5b1a4b41665bf1b1 (diff)
downloadop-kernel-dev-d51c50525f0a4c6b58fdd493a933017c62d98731.zip
op-kernel-dev-d51c50525f0a4c6b58fdd493a933017c62d98731.tar.gz
mmc: vub300: don't print error when allocating urb fails
kmalloc will print enough information in case of failure. Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/vub300.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c
index 1e819f9..bb3e0d1 100644
--- a/drivers/mmc/host/vub300.c
+++ b/drivers/mmc/host/vub300.c
@@ -2116,13 +2116,11 @@ static int vub300_probe(struct usb_interface *interface,
command_out_urb = usb_alloc_urb(0, GFP_KERNEL);
if (!command_out_urb) {
retval = -ENOMEM;
- dev_err(&udev->dev, "not enough memory for command_out_urb\n");
goto error0;
}
command_res_urb = usb_alloc_urb(0, GFP_KERNEL);
if (!command_res_urb) {
retval = -ENOMEM;
- dev_err(&udev->dev, "not enough memory for command_res_urb\n");
goto error1;
}
/* this also allocates memory for our VUB300 mmc host device */
OpenPOWER on IntegriCloud