aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/ipc.c
diff options
context:
space:
mode:
authorPaulK <contact@paulk.fr>2011-10-29 18:59:05 +0200
committerPaulK <contact@paulk.fr>2011-10-29 21:58:49 +0200
commit4ab5a702c263d64e60ba9b50e40e2271f3e312d7 (patch)
tree755c69222a6a449157d6e37caf755bd777687b78 /samsung-ipc/ipc.c
parentf4923749132fe32f54b4f300f84071481559d606 (diff)
downloadexternal_libsamsung-ipc-4ab5a702c263d64e60ba9b50e40e2271f3e312d7.zip
external_libsamsung-ipc-4ab5a702c263d64e60ba9b50e40e2271f3e312d7.tar.gz
external_libsamsung-ipc-4ab5a702c263d64e60ba9b50e40e2271f3e312d7.tar.bz2
Added SIM IO table (from FSO), related helpers, crespo SMS ACK and corrections
Diffstat (limited to 'samsung-ipc/ipc.c')
-rw-r--r--samsung-ipc/ipc.c8
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 */