Re: [U-Boot] [PATCH 1/4] sound: Correct data output in sound_create_square_wave()

2018-11-29 Thread sjg
This function currently outputs twice as much data as it should and overwrites its buffer as a result. Fix it. Signed-off-by: Simon Glass --- drivers/sound/sound.c | 2 -- 1 file changed, 2 deletions(-) Applied to u-boot-dm/master, thanks! ___

[U-Boot] [PATCH 1/4] sound: Correct data output in sound_create_square_wave()

2018-11-15 Thread Simon Glass
This function currently outputs twice as much data as it should and overwrites its buffer as a result. Fix it. Signed-off-by: Simon Glass --- drivers/sound/sound.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/sound/sound.c b/drivers/sound/sound.c index 969408186fd..6c1eb4c19cc