diff options
Diffstat (limited to 'bsd-core/drm_sysctl.c')
-rw-r--r-- | bsd-core/drm_sysctl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bsd-core/drm_sysctl.c b/bsd-core/drm_sysctl.c index 36b81daa..270b3947 100644 --- a/bsd-core/drm_sysctl.c +++ b/bsd-core/drm_sysctl.c @@ -176,9 +176,9 @@ static int DRM(vm_info)DRM_SYSCTL_HANDLER_ARGS drm_device_t *dev = arg1; int ret; - DRM_LOCK; + DRM_LOCK(); ret = DRM(_vm_info)(oidp, arg1, arg2, req); - DRM_UNLOCK; + DRM_UNLOCK(); return ret; } @@ -228,9 +228,9 @@ static int DRM(bufs_info) DRM_SYSCTL_HANDLER_ARGS drm_device_t *dev = arg1; int ret; - DRM_LOCK; + DRM_LOCK(); ret = DRM(_bufs_info)(oidp, arg1, arg2, req); - DRM_UNLOCK; + DRM_UNLOCK(); return ret; } @@ -262,9 +262,9 @@ static int DRM(clients_info)DRM_SYSCTL_HANDLER_ARGS drm_device_t *dev = arg1; int ret; - DRM_LOCK; + DRM_LOCK(); ret = DRM(_clients_info)(oidp, arg1, arg2, req); - DRM_UNLOCK; + DRM_UNLOCK(); return ret; } |