diff options
author | darron@kewl.org <darron@kewl.org> | 2008-10-16 00:26:34 +0100 |
---|---|---|
committer | darron@kewl.org <darron@kewl.org> | 2008-10-16 00:26:34 +0100 |
commit | a02327e81915e000e69a6db7297d68d578b8df97 (patch) | |
tree | 30f1a6427ff4bc7e304d86c5043d9c6293c1f5e7 /linux/include/media/videobuf-dvb.h | |
parent | 88ad9b4d994c8b8e301d0097ae3d6e27bf717683 (diff) | |
download | mediapointer-dvb-s2-a02327e81915e000e69a6db7297d68d578b8df97.tar.gz mediapointer-dvb-s2-a02327e81915e000e69a6db7297d68d578b8df97.tar.bz2 |
videobuf: data storage optimisation (2)
From: Darron Broad <darron@kewl.org>
To optimise data storage even further one other redundant
var has been removed.
This also removes a redundant assignment.
Priority: normal
Signed-off-by: Darron Broad <darron@kewl.org>
iSigned-off-by: Steven Toth <stoth@linuxtv.org>
Diffstat (limited to 'linux/include/media/videobuf-dvb.h')
-rw-r--r-- | linux/include/media/videobuf-dvb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/linux/include/media/videobuf-dvb.h b/linux/include/media/videobuf-dvb.h index 069215c77..52ddda90d 100644 --- a/linux/include/media/videobuf-dvb.h +++ b/linux/include/media/videobuf-dvb.h @@ -25,7 +25,6 @@ struct videobuf_dvb { struct videobuf_dvb_frontend { struct list_head felist; - void *dev; int id; struct videobuf_dvb dvb; }; @@ -57,7 +56,7 @@ int videobuf_dvb_register_adapter(struct videobuf_dvb_frontends *f, int videobuf_dvb_register_frontend(struct dvb_adapter *adapter, struct videobuf_dvb *dvb); -struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(void *private, struct videobuf_dvb_frontends *f, int id); +struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(struct videobuf_dvb_frontends *f, int id); struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id); int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p); |