diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2016-09-03 07:35:29 +0200 |
---|---|---|
committer | Dave Kleikamp <dave.kleikamp@oracle.com> | 2016-09-06 12:17:24 -0500 |
commit | 240c5185c52d00725ae7da7d1ee82ad8b8306d52 (patch) | |
tree | b61b90fcd932e17ab0ef70e544f4c5fec670a522 /Makefile | |
parent | 7cfcd8b79ab2472102d9229863e86ff208f959d4 (diff) | |
download | linux-240c5185c52d00725ae7da7d1ee82ad8b8306d52.tar.gz linux-240c5185c52d00725ae7da7d1ee82ad8b8306d52.tar.bz2 linux-240c5185c52d00725ae7da7d1ee82ad8b8306d52.zip |
jfs: Simplify code
Calling 'list_splice' followed by 'INIT_LIST_HEAD' is equivalent to
'list_splice_init'.
This has been spotted with the following coccinelle script:
/////
@@
expression y,z;
@@
- list_splice(y,z);
- INIT_LIST_HEAD(y);
+ list_splice_init(y,z);
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Diffstat (limited to 'Makefile')
0 files changed, 0 insertions, 0 deletions