scsi: bnx2fc: Simplify code
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 3 Sep 2016 07:05:48 +0000 (09:05 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 9 Sep 2016 11:08:30 +0000 (07:08 -0400)
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>
Acked-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/bnx2fc/bnx2fc_fcoe.c

index a5052dd..88be12a 100644 (file)
@@ -2765,8 +2765,7 @@ static void __exit bnx2fc_mod_exit(void)
         * held.
         */
        mutex_lock(&bnx2fc_dev_lock);
-       list_splice(&adapter_list, &to_be_deleted);
-       INIT_LIST_HEAD(&adapter_list);
+       list_splice_init(&adapter_list, &to_be_deleted);
        adapter_count = 0;
        mutex_unlock(&bnx2fc_dev_lock);