Commit 48b219a2 authored by Zheng Yongjun's avatar Zheng Yongjun Committed by David S. Miller

cavium/liquidio: Use DEFINE_SPINLOCK() for spinlock

spinlock can be initialized automatically with DEFINE_SPINLOCK()
rather than explicitly calling spin_lock_init().
Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1454c51d
...@@ -545,7 +545,7 @@ static atomic_t adapter_fw_states[MAX_OCTEON_DEVICES]; ...@@ -545,7 +545,7 @@ static atomic_t adapter_fw_states[MAX_OCTEON_DEVICES];
static u32 octeon_device_count; static u32 octeon_device_count;
/* locks device array (i.e. octeon_device[]) */ /* locks device array (i.e. octeon_device[]) */
static spinlock_t octeon_devices_lock; static DEFINE_SPINLOCK(octeon_devices_lock);
static struct octeon_core_setup core_setup[MAX_OCTEON_DEVICES]; static struct octeon_core_setup core_setup[MAX_OCTEON_DEVICES];
...@@ -563,7 +563,6 @@ void octeon_init_device_list(int conf_type) ...@@ -563,7 +563,6 @@ void octeon_init_device_list(int conf_type)
memset(octeon_device, 0, (sizeof(void *) * MAX_OCTEON_DEVICES)); memset(octeon_device, 0, (sizeof(void *) * MAX_OCTEON_DEVICES));
for (i = 0; i < MAX_OCTEON_DEVICES; i++) for (i = 0; i < MAX_OCTEON_DEVICES; i++)
oct_set_config_info(i, conf_type); oct_set_config_info(i, conf_type);
spin_lock_init(&octeon_devices_lock);
} }
static void *__retrieve_octeon_config_info(struct octeon_device *oct, static void *__retrieve_octeon_config_info(struct octeon_device *oct,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment