diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2014-05-19 16:22:44 +0200 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2014-05-19 16:22:44 +0200 |
commit | e201a0442f131048519f553fadb2b4f6ad2fecc7 (patch) | |
tree | 0e51ffbb5e1c4b5af864f8e8fc0cd648e0c8a618 /include | |
parent | 2384bd83a173071c35e0bb559b3577978336965e (diff) | |
download | external_libsamsung-ipc-e201a0442f131048519f553fadb2b4f6ad2fecc7.zip external_libsamsung-ipc-e201a0442f131048519f553fadb2b4f6ad2fecc7.tar.gz external_libsamsung-ipc-e201a0442f131048519f553fadb2b4f6ad2fecc7.tar.bz2 |
net: Correct enumeration
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'include')
-rw-r--r-- | include/net.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net.h b/include/net.h index 7e7809e..69ec91f 100644 --- a/include/net.h +++ b/include/net.h @@ -46,19 +46,19 @@ * Values */ -#define IPC_NET_PLMN_SEL_MANUAL 0x03 #define IPC_NET_PLMN_SEL_AUTO 0x02 +#define IPC_NET_PLMN_SEL_MANUAL 0x03 #define IPC_NET_MODE_SEL_GSM_UMTS 0x01 #define IPC_NET_MODE_SEL_GSM_ONLY 0x02 #define IPC_NET_MODE_SEL_UMTS_ONLY 0x03 -#define IPC_NET_ACCESS_TECHNOLOGY_UNKNOWN 0xFF #define IPC_NET_ACCESS_TECHNOLOGY_GSM 0x00 #define IPC_NET_ACCESS_TECHNOLOGY_GSM2 0x01 #define IPC_NET_ACCESS_TECHNOLOGY_GPRS 0x02 #define IPC_NET_ACCESS_TECHNOLOGY_EDGE 0x03 #define IPC_NET_ACCESS_TECHNOLOGY_UMTS 0x04 +#define IPC_NET_ACCESS_TECHNOLOGY_UNKNOWN 0xFF #define IPC_NET_PLMN_STATUS_AVAILABLE 0x02 #define IPC_NET_PLMN_STATUS_CURRENT 0x03 |