projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b4a66f
)
misc: mic: Use PTR_ERR_OR_ZERO rather than its implementation
author
zhong jiang
<zhongjiang@huawei.com>
Thu, 5 Sep 2019 06:43:13 +0000
(14:43 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 10 Sep 2019 22:18:05 +0000
(23:18 +0100)
PTR_ERR_OR_ZERO contains if(IS_ERR(...)) + PTR_ERR. It is better to
use it directly. hence just replace it.
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Link:
https://lore.kernel.org/r/1567665795-5901-3-git-send-email-zhongjiang@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mic/scif/scif_epd.h
patch
|
blob
|
history
diff --git
a/drivers/misc/mic/scif/scif_epd.h
b/drivers/misc/mic/scif/scif_epd.h
index d3837f8a5ba0c8514231bb6a727acc50a328e37d..0b9dfe1cc06c01a70926f96665a71ed232617c7f 100644
(file)
--- a/
drivers/misc/mic/scif/scif_epd.h
+++ b/
drivers/misc/mic/scif/scif_epd.h
@@
-156,9
+156,8
@@
static inline int scif_verify_epd(struct scif_endpt *ep)
static inline int scif_anon_inode_getfile(scif_epd_t epd)
{
epd->anon = anon_inode_getfile("scif", &scif_anon_fops, NULL, 0);
- if (IS_ERR(epd->anon))
- return PTR_ERR(epd->anon);
- return 0;
+
+ return PTR_ERR_OR_ZERO(epd->anon);
}
static inline void scif_anon_inode_fput(scif_epd_t epd)