Revert a change that accidentally went in with whitespace changes from

Linux, which broke on FreeBSD. DRM_COPY_*_IOCTL checks for the size
    parameter matching the ioctl's command size there, since the copin/out
    happened earlier.
main
Eric Anholt 2006-04-09 20:10:32 +00:00
parent 6cb366b5a8
commit 63c4d02576
1 changed files with 2 additions and 2 deletions

View File

@ -959,8 +959,8 @@ static int savage_bci_event_emit(DRM_IOCTL_ARGS)
event.count = savage_bci_emit_event(dev_priv, event.flags); event.count = savage_bci_emit_event(dev_priv, event.flags);
event.count |= dev_priv->event_wrap << 16; event.count |= dev_priv->event_wrap << 16;
DRM_COPY_TO_USER_IOCTL(&((drm_savage_event_emit_t __user *)data)-> DRM_COPY_TO_USER_IOCTL((drm_savage_event_emit_t __user *)data,
count, event.count, sizeof(event.count)); event, sizeof(event));
return 0; return 0;
} }