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-Tag: firefly_0821_release~23728^2~215 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bd2b19a78cb215b67d8d016ea6607f04e48fa523;p=firefly-linux-kernel-4.4.55.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 c245f501a319..65ced435018a 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 {