diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-07-14 21:24:34 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-07-14 21:24:34 +0000 |
commit | 81c8999e12495a51ea0759ead04090728988f96f (patch) | |
tree | 0b99fe64cc7c5765b7f231ee209b6627db76f3b6 /sys/dev/usb/uvideo.c | |
parent | 8e83a9f87b54a93ba4328c58978fe4e21d3d3697 (diff) |
implement poll() for video(4)
ok mglocker
Diffstat (limited to 'sys/dev/usb/uvideo.c')
-rw-r--r-- | sys/dev/usb/uvideo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c index 513da57cd15..ba5bd60acbd 100644 --- a/sys/dev/usb/uvideo.c +++ b/sys/dev/usb/uvideo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.c,v 1.131 2010/04/27 03:38:34 marco Exp $ */ +/* $OpenBSD: uvideo.c,v 1.132 2010/07/14 21:24:33 jakemsr Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -2094,6 +2094,7 @@ uvideo_mmap_queue(struct uvideo_softc *sc, uint8_t *buf, int len) sc->sc_mmap_cur = 0; wakeup(sc); + sc->sc_uplayer_intr(sc->sc_uplayer_arg); } void |