From: Michael Krufky Date: Mon, 10 Dec 2007 19:08:25 +0000 (-0300) Subject: V4L/DVB (6789): tuner: use char *name instead of 128 byte fixed array for demod info X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bd2b19a78cb215b67d8d016ea6607f04e48fa523;p=mv-sheeva.git 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 Signed-off-by: Mauro Carvalho Chehab --- 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 @@ extern unsigned const int tuner_count; struct analog_demod_info { - char name[128]; + char *name; }; struct analog_tuner_ops {