aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tuner-driver.h
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2007-12-10 14:08:25 -0500
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 16:03:30 -0500
commitbd2b19a78cb215b67d8d016ea6607f04e48fa523 (patch)
tree510c3a8c99f0b2d808ad59aa32b5cae720e65169 /drivers/media/video/tuner-driver.h
parent2dcf84b36c23a2c34207ab650071f9ee33d3c4a2 (diff)
V4L/DVB (6789): tuner: use char *name instead of 128 byte fixed array for demod info
Don't waste 128 bytes of memory for a name that might not actually need it. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tuner-driver.h')
-rw-r--r--drivers/media/video/tuner-driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/tuner-driver.h b/drivers/media/video/tuner-driver.h
index c245f501a31..65ced435018 100644
--- a/drivers/media/video/tuner-driver.h
+++ b/drivers/media/video/tuner-driver.h
@@ -29,7 +29,7 @@
29extern unsigned const int tuner_count; 29extern unsigned const int tuner_count;
30 30
31struct analog_demod_info { 31struct analog_demod_info {
32 char name[128]; 32 char *name;
33}; 33};
34 34
35struct analog_tuner_ops { 35struct analog_tuner_ops {