aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-10 18:38:11 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-10 18:38:11 +0200
commit53ea21888ebdf0c860178544e52d4b1250efe27c (patch)
treeba217344f16f8c00acfdc698a555cae38a6b4fa9 /samsung-ipc
parent743ede5407a6e8b8baeb9c5b10cfc80d428ae847 (diff)
downloadexternal_libsamsung-ipc-53ea21888ebdf0c860178544e52d4b1250efe27c.zip
external_libsamsung-ipc-53ea21888ebdf0c860178544e52d4b1250efe27c.tar.gz
external_libsamsung-ipc-53ea21888ebdf0c860178544e52d4b1250efe27c.tar.bz2
Rename response types and export them together with request ones in the vapi
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'samsung-ipc')
-rw-r--r--samsung-ipc/ipc_util.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/samsung-ipc/ipc_util.c b/samsung-ipc/ipc_util.c
index d497f2f..06e7161 100644
--- a/samsung-ipc/ipc_util.c
+++ b/samsung-ipc/ipc_util.c
@@ -24,12 +24,12 @@
const char *ipc_response_type(struct ipc_response *frame) {
switch(frame->type) {
- case IPC_TYPE_INDI:
- return "INDI";
- case IPC_TYPE_RESP:
- return "RESP";
- case IPC_TYPE_NOTI:
- return "NOTI";
+ case IPC_TYPE_INDICATION:
+ return "INDICATION";
+ case IPC_TYPE_RESPONSE:
+ return "RESPONSE";
+ case IPC_TYPE_NOTIFICATION:
+ return "NOTIFICATION";
default:
return "UNKNOWN";
}