diff options
Diffstat (limited to 'samsung-ipc/ipc.c')
-rw-r--r-- | samsung-ipc/ipc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/samsung-ipc/ipc.c b/samsung-ipc/ipc.c index c68b271..213af4e 100644 --- a/samsung-ipc/ipc.c +++ b/samsung-ipc/ipc.c @@ -221,14 +221,14 @@ int _ipc_client_send(struct ipc_client *client, struct ipc_message_info *request } /* Convenience functions for ipc_send */ -inline void ipc_client_send_get(struct ipc_client *client, const unsigned short command, unsigned char aseq) +inline void ipc_client_send_get(struct ipc_client *client, const unsigned short command, unsigned char mseq) { - ipc_client_send(client, command, IPC_TYPE_GET, 0, 0, aseq); + ipc_client_send(client, command, IPC_TYPE_GET, 0, 0, mseq); } -inline void ipc_client_send_exec(struct ipc_client *client, const unsigned short command, unsigned char aseq) +inline void ipc_client_send_exec(struct ipc_client *client, const unsigned short command, unsigned char mseq) { - ipc_client_send(client, command, IPC_TYPE_EXEC, 0, 0, aseq); + ipc_client_send(client, command, IPC_TYPE_EXEC, 0, 0, mseq); } /* Wrapper for ipc_send */ |