Kuninori Morimoto
dec6aa49ab
fbdev: sh_mobile_hdmi: modify flags name to more specific
...
This patch solve below report from Guennadi
1)
> +/* Audio source select */
> +#define HDMI_SRC_MASK (0xF << 0)
> +#define HDMI_SRC_I2S (0 << 0) /* default */
> +#define HDMI_SRC_SPDIF (1 << 0)
> +#define HDMI_SRC_DSD (2 << 0)
> +#define HDMI_SRC_HBR (3 << 0)
I would be more specific with these macro names, i.e., include "AUDIO" or
"SND" or something similar in them, e.g., HDMI_AUDIO_SRC_I2S.
2)
> + case HDMI_SRC_I2S:
> + data = (0x0 << 3);
> + break;
> + case HDMI_SRC_SPDIF:
> + data = (0x1 << 3);
> + break;
> + case HDMI_SRC_DSD:
> + data = (0x2 << 3);
> + break;
> + case HDMI_SRC_HBR:
> + data = (0x3 << 3);
In all above cases parenthesis are superfluous.
Reported-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2010-09-10 16:07:41 +01:00
..
2010-08-15 01:06:31 -04:00
2010-08-15 17:31:43 -07:00
2010-05-19 14:13:07 +10:00
2010-08-14 22:26:51 +02:00
2010-08-05 17:17:51 +00:00
2010-08-16 18:42:58 +01:00
2010-07-20 18:45:14 -07:00
2010-08-08 23:43:05 -03:00
2010-08-08 20:58:20 +01:00
2010-08-10 15:59:38 -07:00
2010-08-03 09:04:16 +02:00
2010-08-04 10:44:19 -07:00
2010-06-03 03:21:52 -07:00
2010-08-11 08:59:01 -07:00
2010-09-06 11:34:29 +01:00
2010-08-10 15:22:42 -07:00
2010-09-10 16:07:41 +01:00
2010-08-12 09:09:41 -07:00