diff options
author | Darron Broad <darron@kewl.org> | 2008-10-15 19:26:34 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-17 16:29:59 -0400 |
commit | 96b7a1a838fb5b8746fc22f4ff3cef358bf59f35 (patch) | |
tree | 01262ee7ba5500fdd227ef87968cb401c2206b1a /drivers/media/video/saa7134 | |
parent | 745632147d54cd4db6812045351510ebd3981a24 (diff) |
V4L/DVB (9271): videobuf: data storage optimisation (2)
To optimise data storage even further one other redundant
var has been removed.
This also removes a redundant assignment.
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Darron Broad <darron@kewl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa7134')
-rw-r--r-- | drivers/media/video/saa7134/saa7134-dvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/saa7134/saa7134-dvb.c b/drivers/media/video/saa7134/saa7134-dvb.c index 7d95a6928772..8c46115d4c79 100644 --- a/drivers/media/video/saa7134/saa7134-dvb.c +++ b/drivers/media/video/saa7134/saa7134-dvb.c | |||
@@ -958,7 +958,7 @@ static int dvb_init(struct saa7134_dev *dev) | |||
958 | 958 | ||
959 | printk(KERN_INFO "%s() allocating 1 frontend\n", __func__); | 959 | printk(KERN_INFO "%s() allocating 1 frontend\n", __func__); |
960 | 960 | ||
961 | if (videobuf_dvb_alloc_frontend(dev, &dev->frontends, 1) == NULL) { | 961 | if (videobuf_dvb_alloc_frontend(&dev->frontends, 1) == NULL) { |
962 | printk(KERN_ERR "%s() failed to alloc\n", __func__); | 962 | printk(KERN_ERR "%s() failed to alloc\n", __func__); |
963 | return -ENOMEM; | 963 | return -ENOMEM; |
964 | } | 964 | } |