diff options
author | Holger Waechtler <devnull@localhost> | 2004-11-26 10:26:09 +0000 |
---|---|---|
committer | Holger Waechtler <devnull@localhost> | 2004-11-26 10:26:09 +0000 |
commit | a6a0a0d60a40e401e82c9a40d9216d925a4eabbf (patch) | |
tree | a0796c0edaf58a9927d19a6e37734a3a1875449f /linux/drivers | |
parent | 382245dcd94a64175f00fcd1595a3c5e63b59cb4 (diff) | |
download | mediapointer-dvb-s2-a6a0a0d60a40e401e82c9a40d9216d925a4eabbf.tar.gz mediapointer-dvb-s2-a6a0a0d60a40e401e82c9a40d9216d925a4eabbf.tar.bz2 |
FE_GET_EVENT wrapper.
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/dvb/cinergyT2/cinergyT2.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/cinergyT2/cinergyT2.c b/linux/drivers/media/dvb/cinergyT2/cinergyT2.c index e71fc484a..20a7271d0 100644 --- a/linux/drivers/media/dvb/cinergyT2/cinergyT2.c +++ b/linux/drivers/media/dvb/cinergyT2/cinergyT2.c @@ -607,6 +607,16 @@ static int cinergyt2_ioctl (struct inode *inode, struct file *file, * functionality. */ break; + case FE_GET_EVENT: + { + /** + * for now we only fill the status field. the parameters + * are trivial to fill as soon FE_GET_FRONTEND is done. + */ + struct dvb_frontend_event *e = (void *) arg; + return cinergyt2_ioctl(inode, file, FE_GET_EVENT, + (unsigned long) &e->status); + } default: ; |