projects
/
profile
/
common
/
platform
/
kernel
/
linux-artik7.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42b63e6
)
Input: ims-pcu - fix dead code in ims_pcu_ofn_reg_addr_store()
author
Dmitry Torokhov
<dmitry.torokhov@gmail.com>
Fri, 24 Oct 2014 22:10:47 +0000
(15:10 -0700)
committer
Dmitry Torokhov
<dmitry.torokhov@gmail.com>
Tue, 28 Oct 2014 17:33:36 +0000
(10:33 -0700)
Coverity pointed out that at return point error is always 0 so the
conditional is not needed.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/misc/ims-pcu.c
patch
|
blob
|
history
diff --git
a/drivers/input/misc/ims-pcu.c
b/drivers/input/misc/ims-pcu.c
index
719410f
..
afed8e2
100644
(file)
--- a/
drivers/input/misc/ims-pcu.c
+++ b/
drivers/input/misc/ims-pcu.c
@@
-1381,7
+1381,7
@@
static ssize_t ims_pcu_ofn_reg_addr_store(struct device *dev,
pcu->ofn_reg_addr = value;
mutex_unlock(&pcu->cmd_mutex);
- return
error ?:
count;
+ return count;
}
static DEVICE_ATTR(reg_addr, S_IRUGO | S_IWUSR,