5 Dec
2009
5 Dec
'09
7:03 p.m.
On Mon, Nov 30, 2009 at 10:56 AM, Daniel Mack daniel@caiaq.de wrote:
Signed-off-by: Daniel Mack daniel@caiaq.de Cc: Mark Brown broonie@opensource.wolfsonmicro.com Cc: Timur Tabi timur@freescale.com Cc: Liam Girdwood lrg@slimlogic.co.uk
Ack
+static const char *supply_names[] = {
- "va", "vd", "vlc"
+};
Minor nit -- this array would take up less space if it were an array of strings instead of an array of pointers to strings.
static const char supply_names[4][] = { "va", "vd", "vlc" };
--
Timur Tabi
Linux kernel developer at Freescale