aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-08-12 06:29:41 -0400
committerJiri Kosina <jkosina@suse.cz>2015-09-29 09:11:40 -0400
commitd9902d597ac54c8abc02e37492e2bc102f31e83f (patch)
treef64598d625e1f2d613c2a55ea8f69df116cd3778
parent061eebba3d3077186609da7d8029e0fd89f194e7 (diff)
drivers: misc: Drop unlikely before IS_ERR(_OR_NULL)
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>
-rw-r--r--drivers/misc/c2port/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/c2port/core.c b/drivers/misc/c2port/core.c
index 464419b36440..cc8645b5369d 100644
--- a/drivers/misc/c2port/core.c
+++ b/drivers/misc/c2port/core.c
@@ -926,7 +926,7 @@ struct c2port_device *c2port_device_register(char *name,
926 926
927 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev, 927 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev,
928 "c2port%d", c2dev->id); 928 "c2port%d", c2dev->id);
929 if (unlikely(IS_ERR(c2dev->dev))) { 929 if (IS_ERR(c2dev->dev)) {
930 ret = PTR_ERR(c2dev->dev); 930 ret = PTR_ERR(c2dev->dev);
931 goto error_device_create; 931 goto error_device_create;
932 } 932 }