Commit 497a2e02 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

staging: gdm724x: remove unneeded TO_HOST_SUCCESS enum

0 is always success in the kernel, just use that.

Cc: Won Kang <wonkang@gctsemi.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ca7ea393
......@@ -155,7 +155,7 @@ static int gdm_tty_recv_complete(void *data, int len, int index, int minor, int
if (complete == RECV_PACKET_PROCESS_COMPLETE)
gdm_tty_recv(tty_str, gdm_tty_recv_complete);
return TO_HOST_SUCCESS;
return 0;
}
static void gdm_tty_send_complete(void *arg)
......
......@@ -24,7 +24,6 @@
#define MAX_ISSUE_NUM 3
enum TO_HOST_RESULT {
TO_HOST_SUCCESS = 0,
TO_HOST_BUFFER_REQUEST_FAIL = 1,
TO_HOST_PORT_CLOSE = 2,
TO_HOST_INVALID_PACKET = 3,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment