mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 02:48:26 +02:00
swconfig: Replace SPIN_LOCK_UNLOCKED with DEFINE_SPINLOCK
SPIN_LOCK_UNLOCKED has been deprecated since 2.6.19 and will get removed in 2.6.39, so replace it with DEFINE_SPINLOCK(). Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26770 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2ea7b39338
commit
43ac860de1
@ -36,7 +36,7 @@ MODULE_LICENSE("GPL");
|
||||
|
||||
static int swdev_id = 0;
|
||||
static struct list_head swdevs;
|
||||
static spinlock_t swdevs_lock = SPIN_LOCK_UNLOCKED;
|
||||
static DEFINE_SPINLOCK(swdevs_lock);
|
||||
struct swconfig_callback;
|
||||
|
||||
struct swconfig_callback
|
||||
|
Loading…
Reference in New Issue
Block a user