Switch SPIN_LOCK_UNLOCKED to spin_lock_init()
authorJon Smirl <jonsmirl@yahoo.com>
Fri, 29 Oct 2004 17:09:54 +0000 (17:09 +0000)
committerJon Smirl <jonsmirl@yahoo.com>
Fri, 29 Oct 2004 17:09:54 +0000 (17:09 +0000)
linux-core/drm_stub.c
linux/drm_drv.h

index aaad3bb..207189f 100644 (file)
@@ -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);
index 6d69839..39b6a75 100644 (file)
@@ -395,7 +395,7 @@ int DRM(fill_in_dev)(drm_device_t *dev, struct pci_dev *pdev, const struct pci_d
 {
        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 );