aboutsummaryrefslogtreecommitdiffstats
path: root/include/gen.h
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-19 08:12:01 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-19 08:12:01 +0200
commit966378782da94cf58f31f7d5dd2a7f40c1029cf3 (patch)
treeccc1294106df6134f3b8a92289d3e736ce0e7964 /include/gen.h
parent716efc1616437ebb96b0f1f0b3e21d439aecda7a (diff)
downloadexternal_libsamsung-ipc-966378782da94cf58f31f7d5dd2a7f40c1029cf3.zip
external_libsamsung-ipc-966378782da94cf58f31f7d5dd2a7f40c1029cf3.tar.gz
external_libsamsung-ipc-966378782da94cf58f31f7d5dd2a7f40c1029cf3.tar.bz2
Reorder fields in generic phone response message
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'include/gen.h')
-rw-r--r--include/gen.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/gen.h b/include/gen.h
index 4b6b7bd..aae309b 100644
--- a/include/gen.h
+++ b/include/gen.h
@@ -21,12 +21,12 @@
#ifndef __GEN_H__
#define __GEN_H__
-#define IPC_GEN_PHONE_RES 0x8001
+#define IPC_GEN_PHONE_RES 0x8001
struct ipc_gen_phone_res {
- unsigned char group, type;
- unsigned short code;
- unsigned char unk;
+ unsigned char group, type;
+ unsigned char unk;
+ unsigned short code;
} __attribute__((__packed__));
#endif