Lines Matching defs:event
16 union snd_firewire_event event;
30 memset(&event, 0, sizeof(event));
32 event.lock_status.type = SNDRV_FIREWIRE_EVENT_LOCK_STATUS;
33 event.lock_status.status = dice->dev_lock_count > 0;
36 count = min_t(long, count, sizeof(event.lock_status));
38 event.dice_notification.type =
40 event.dice_notification.notification = dice->notification_bits;
43 count = min_t(long, count, sizeof(event.dice_notification));
48 if (copy_to_user(buf, &event, count))