diff options
author | Jon Smirl <jonsmirl@yahoo.com> | 2004-10-29 17:09:54 +0000 |
---|---|---|
committer | Jon Smirl <jonsmirl@yahoo.com> | 2004-10-29 17:09:54 +0000 |
commit | 816a2917099b3ff214dc357c5b41984f34902cf3 (patch) | |
tree | c3ec5e5d7e2edac6e192947679135f790ce8d9bb /linux-core | |
parent | c611cb9f171df3b9ad19e57e614f35c67e73ceb1 (diff) |
Switch SPIN_LOCK_UNLOCKED to spin_lock_init()
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/drm_stub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_stub.c b/linux-core/drm_stub.c index aaad3bb6..207189f1 100644 --- a/linux-core/drm_stub.c +++ b/linux-core/drm_stub.c @@ -60,7 +60,7 @@ static int fill_in_dev(drm_device_t * dev, struct pci_dev *pdev, { int retcode; - dev->count_lock = SPIN_LOCK_UNLOCKED; + spin_lock_init(&dev->count_lock); init_timer(&dev->timer); sema_init(&dev->struct_sem, 1); sema_init(&dev->ctxlist_sem, 1); |