Skip to content

Commit

Permalink
mtip32xx: use LIST_HEAD() for list_head
Browse files Browse the repository at this point in the history
There's no need to declare a list and then init it manually,
just use the LIST_HEAD() macro.

Signed-off-by: Shixin Liu <liushixin2@huawei.com>
Link: https://lore.kernel.org/r/20210329095349.4170870-2-liushixin2@huawei.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
Shixin Liu authored and Jens Axboe committed Mar 29, 2021
1 parent acf8aec commit 8075585
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions drivers/block/mtip32xx/mtip32xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
/* Device instance number, incremented each time a device is probed. */
static int instance;

static struct list_head online_list;
static struct list_head removing_list;
static LIST_HEAD(online_list);
static LIST_HEAD(removing_list);
static DEFINE_SPINLOCK(dev_lock);

/*
Expand Down Expand Up @@ -4363,9 +4363,6 @@ static int __init mtip_init(void)

pr_info(MTIP_DRV_NAME " Version " MTIP_DRV_VERSION "\n");

INIT_LIST_HEAD(&online_list);
INIT_LIST_HEAD(&removing_list);

/* Allocate a major block device number to use with this driver. */
error = register_blkdev(0, MTIP_DRV_NAME);
if (error <= 0) {
Expand Down

0 comments on commit 8075585

Please sign in to comment.