drm/i2c: tda998x: fix bad value in the AIF
The AIF has an uninitialized byte. This patch clears the whole buffer before filling it. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
d8ec26d7f8
commit
7288ca07b6
@ -528,10 +528,10 @@ tda998x_write_aif(struct drm_encoder *encoder, struct tda998x_encoder_params *p)
|
||||
{
|
||||
uint8_t buf[PB(5) + 1];
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
buf[HB(0)] = 0x84;
|
||||
buf[HB(1)] = 0x01;
|
||||
buf[HB(2)] = 10;
|
||||
buf[PB(0)] = 0;
|
||||
buf[PB(1)] = p->audio_frame[1] & 0x07; /* CC */
|
||||
buf[PB(2)] = p->audio_frame[2] & 0x1c; /* SF */
|
||||
buf[PB(4)] = p->audio_frame[4];
|
||||
|
Loading…
Reference in New Issue
Block a user