From daa853596f906c28a8d71df62b7c979859e7b623 Mon Sep 17 00:00:00 2001 From: Dmitry Shmidt Date: Wed, 14 Mar 2018 16:04:34 -0700 Subject: [PATCH] ANDROID: goldfish: Fix typo in goldfish_cmd_locked() call Patch 2898d1ea41670fe3142c8a1c0c6b58b4c24a555b ANDROID: Address checkpatch.pl warnings in goldfish_pipe_v2 has typo in function call. Change-Id: I3355c4a71f1e4026b6095a34cfe7adefa52f7fb6 Signed-off-by: Dmitry Shmidt --- drivers/platform/goldfish/goldfish_pipe_v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/goldfish/goldfish_pipe_v2.c b/drivers/platform/goldfish/goldfish_pipe_v2.c index 911b049a28c3..4341cb1a2a2a 100644 --- a/drivers/platform/goldfish/goldfish_pipe_v2.c +++ b/drivers/platform/goldfish/goldfish_pipe_v2.c @@ -348,7 +348,7 @@ static int transfer_max_buffers(struct goldfish_pipe* pipe, pipe->command_buffer); /* Transfer the data */ - *status = goldfish_pipe_cmd_locked( + *status = goldfish_cmd_locked( pipe, is_write ? PIPE_CMD_WRITE : PIPE_CMD_READ);