aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-04-04 19:11:17 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-06-27 18:41:11 +0200
commit77ad081b207f0756eafa66eb0d989eae5cbc4459 (patch)
tree04e49785af314f8378022be707220931de3258da
parent38d1700ad7b98e50b56ca3b8eb3c181ccaa1c8ae (diff)
downloadhardware_replicant_libsamsung-ipc-77ad081b207f0756eafa66eb0d989eae5cbc4459.tar.gz
hardware_replicant_libsamsung-ipc-77ad081b207f0756eafa66eb0d989eae5cbc4459.tar.bz2
hardware_replicant_libsamsung-ipc-77ad081b207f0756eafa66eb0d989eae5cbc4459.zip
includes: ss.h: switch to Linux code style
This contains no functional changes. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Reviewed-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
-rw-r--r--include/ss.h42
1 files changed, 20 insertions, 22 deletions
diff --git a/include/ss.h b/include/ss.h
index 67c78e1..5b4e8f3 100644
--- a/include/ss.h
+++ b/include/ss.h
@@ -27,38 +27,36 @@
* Commands
*/
-#define IPC_SS_WAITING 0x0C01
-#define IPC_SS_CLI 0x0C02
-#define IPC_SS_BARRING 0x0C03
-#define IPC_SS_BARRING_PW 0x0C04
-#define IPC_SS_FORWARDING 0x0C05
-#define IPC_SS_INFO 0x0C06
-#define IPC_SS_MANAGE_CALL 0x0C07
-#define IPC_SS_USSD 0x0C08
-#define IPC_SS_AOC 0x0C09
-#define IPC_SS_RELEASE_COMPLETE 0x0C0A
+#define IPC_SS_WAITING 0x0C01
+#define IPC_SS_CLI 0x0C02
+#define IPC_SS_BARRING 0x0C03
+#define IPC_SS_BARRING_PW 0x0C04
+#define IPC_SS_FORWARDING 0x0C05
+#define IPC_SS_INFO 0x0C06
+#define IPC_SS_MANAGE_CALL 0x0C07
+#define IPC_SS_USSD 0x0C08
+#define IPC_SS_AOC 0x0C09
+#define IPC_SS_RELEASE_COMPLETE 0x0C0A
/*
* Values
*/
-#define IPC_SS_USSD_NO_ACTION_REQUIRE 0x01
-#define IPC_SS_USSD_ACTION_REQUIRE 0x02
-#define IPC_SS_USSD_TERMINATED_BY_NET 0x03
-#define IPC_SS_USSD_OTHER_CLIENT 0x04
-#define IPC_SS_USSD_NOT_SUPPORT 0x05
-#define IPC_SS_USSD_TIME_OUT 0x06
+#define IPC_SS_USSD_NO_ACTION_REQUIRE 0x01
+#define IPC_SS_USSD_ACTION_REQUIRE 0x02
+#define IPC_SS_USSD_TERMINATED_BY_NET 0x03
+#define IPC_SS_USSD_OTHER_CLIENT 0x04
+#define IPC_SS_USSD_NOT_SUPPORT 0x05
+#define IPC_SS_USSD_TIME_OUT 0x06
/*
* Structures
*/
struct ipc_ss_ussd_header {
- unsigned char state;
- unsigned char dcs;
- unsigned char length;
+ unsigned char state;
+ unsigned char dcs;
+ unsigned char length;
} __attribute__((__packed__));
-#endif
-
-// vim:ts=4:sw=4:expandtab
+#endif /* __SAMSUNG_IPC_SS_H__ */