[PATCH 2/2] staging: goldfish: add a blank line into struct goldfish_audio

2018-07-11 Thread rkir
From: Roman Kiryanov To separate data members and the comment for better readability. Signed-off-by: Roman Kiryanov --- drivers/staging/goldfish/goldfish_audio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/goldfish/goldfish_audio.c

[PATCH 4/4] staging: goldfish: Clear audio read buffer status after each read

2018-06-01 Thread rkir
From: Joshua Lang The buffer_status field is interrupt updated. After every read request, the buffer_status read field should be reset so that on the next loop iteration we don't read a stale value and read data before the device is ready. Signed-off-by: Joshua Lang Signed-off-by: Roman

[PATCH 4/4] staging: goldfish: Clear audio read buffer status after each read

2018-06-01 Thread rkir
From: Joshua Lang The buffer_status field is interrupt updated. After every read request, the buffer_status read field should be reset so that on the next loop iteration we don't read a stale value and read data before the device is ready. Signed-off-by: “Joshua Lang” Signed-off-by: Roman

[PATCH 4/4] staging: goldfish: Clear audio read buffer status after each read

2018-06-01 Thread rkir
From: Joshua Lang The buffer_status field is interrupt updated. After every read request, the buffer_status read field should be reset so that on the next loop iteration we don't read a stale value and read data before the device is ready. Signed-off-by: “Joshua Lang” ---

[PATCH 2/4] staging: goldfish: Fix checkpatch warnings in goldfish_audio.c

2018-06-01 Thread rkir
From: Roman Kiryanov Address issues pointed by checkpatch.pl Signed-off-by: Roman Kiryanov --- drivers/staging/goldfish/goldfish_audio.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/staging/goldfish/goldfish_audio.c

[PATCH 3/3] Clear audio read buffer status after each read

2018-05-31 Thread rkir
From: Joshua Lang The buffer_status field is interrupt updated. After every read request, the buffer_status read field should be reset so that on the next loop iteration we don't read a stale value and read data before the device is ready. Signed-off-by: “Joshua Lang” ---