projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8654cda
)
staging: cxt1e1: linux.c: Return negative error codes
author
Sachin Kamat
<sachin.kamat@linaro.org>
Fri, 27 Sep 2013 04:06:38 +0000
(09:36 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 1 Oct 2013 01:48:41 +0000
(18:48 -0700)
Return negative error codes as is followed in the rest of the
kernel.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/cxt1e1/linux.c
patch
|
blob
|
history
diff --git
a/drivers/staging/cxt1e1/linux.c
b/drivers/staging/cxt1e1/linux.c
index
598e6ba
..
9b48373
100644
(file)
--- a/
drivers/staging/cxt1e1/linux.c
+++ b/
drivers/staging/cxt1e1/linux.c
@@
-230,7
+230,7
@@
c4_wq_port_init (mpi_t *pi)
__func__, name, pi->portnum); /* RLD DEBUG */
#endif
if (!(pi->wq_port = create_singlethread_workqueue (name)))
- return ENOMEM;
+ return
-
ENOMEM;
return 0; /* success */
}