projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
061eebb
)
drivers: misc: Drop unlikely before IS_ERR(_OR_NULL)
author
Viresh Kumar
<viresh.kumar@linaro.org>
Wed, 12 Aug 2015 10:29:41 +0000
(15:59 +0530)
committer
Jiri Kosina
<jkosina@suse.cz>
Tue, 29 Sep 2015 13:11:40 +0000
(15:11 +0200)
IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and there
is no need to do that again from its callers. Drop it.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/misc/c2port/core.c
patch
|
blob
|
history
diff --git
a/drivers/misc/c2port/core.c
b/drivers/misc/c2port/core.c
index
464419b
..
cc8645b
100644
(file)
--- a/
drivers/misc/c2port/core.c
+++ b/
drivers/misc/c2port/core.c
@@
-926,7
+926,7
@@
struct c2port_device *c2port_device_register(char *name,
c2dev->dev = device_create(c2port_class, NULL, 0, c2dev,
"c2port%d", c2dev->id);
- if (
unlikely(IS_ERR(c2dev->dev)
)) {
+ if (
IS_ERR(c2dev->dev
)) {
ret = PTR_ERR(c2dev->dev);
goto error_device_create;
}