diff options
author | darron@kewl.org <darron@kewl.org> | 2008-10-15 17:43:41 +0100 |
---|---|---|
committer | darron@kewl.org <darron@kewl.org> | 2008-10-15 17:43:41 +0100 |
commit | c8efc47aefa864b92537ab1470b913b20e8dcacd (patch) | |
tree | a7a8265a6a4e0b2732d7db44073b6d6c319f4022 /linux/drivers/media/video/cx23885 | |
parent | 78057bdf11c9ba36c64c6c081eeb6bae29cd72c4 (diff) | |
download | mediapointer-dvb-s2-c8efc47aefa864b92537ab1470b913b20e8dcacd.tar.gz mediapointer-dvb-s2-c8efc47aefa864b92537ab1470b913b20e8dcacd.tar.bz2 |
videobuf: data storage optimisation
From: Darron Broad <darron@kewl.org>
To optimise data storage redundant vars are removed.
Priority: normal
Signed-off-by: Darron Broad <darron@kewl.org>
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/cx23885')
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-core.c b/linux/drivers/media/video/cx23885/cx23885-core.c index 009e5cb01..4f68156d2 100644 --- a/linux/drivers/media/video/cx23885/cx23885-core.c +++ b/linux/drivers/media/video/cx23885/cx23885-core.c @@ -644,7 +644,7 @@ static int cx23885_init_tsport(struct cx23885_dev *dev, init_timer(&port->mpegq.timeout); mutex_init(&port->frontends.lock); - INIT_LIST_HEAD(&port->frontends.frontend.felist); + INIT_LIST_HEAD(&port->frontends.felist); port->frontends.active_fe_id = 0; /* This should be hardcoded allow a single frontend |