projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c2bc5c
)
usb: musb: am35x: don't print on ENOMEM
author
Wolfram Sang
<wsa-dev@sang-engineering.com>
Thu, 25 Aug 2016 17:39:26 +0000
(19:39 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 30 Aug 2016 17:17:38 +0000
(19:17 +0200)
All kmalloc-based functions print enough information on failures.
Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/musb/am35x.c
patch
|
blob
|
history
diff --git
a/drivers/usb/musb/am35x.c
b/drivers/usb/musb/am35x.c
index
c41fe58
..
c14577d
100644
(file)
--- a/
drivers/usb/musb/am35x.c
+++ b/
drivers/usb/musb/am35x.c
@@
-474,10
+474,8
@@
static int am35x_probe(struct platform_device *pdev)
int ret = -ENOMEM;
glue = kzalloc(sizeof(*glue), GFP_KERNEL);
- if (!glue) {
- dev_err(&pdev->dev, "failed to allocate glue context\n");
+ if (!glue)
goto err0;
- }
phy_clk = clk_get(&pdev->dev, "fck");
if (IS_ERR(phy_clk)) {