summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-08-17 15:30:34 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-08-17 15:30:34 -0500
commitf989e7844d6fdca1e4749571501d1c30550604ec (patch)
treeab60594db0e5961eabc973b400cbd581a65463c1
parent1e6bdb36ecdf821b419985fb93d58d00cf46fab2 (diff)
downloadofono-f989e7844d6fdca1e4749571501d1c30550604ec.tar.bz2
Move clip-status enum out of common.h
-rw-r--r--src/call-settings.c7
-rw-r--r--src/common.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/src/call-settings.c b/src/call-settings.c
index dda6e95e..6718c2d8 100644
--- a/src/call-settings.c
+++ b/src/call-settings.c
@@ -49,6 +49,13 @@ enum clir_status {
CLIR_STATUS_TEMPORARY_ALLOWED
};
+/* 27.007 Section 7.6 */
+enum clip_status {
+ CLIP_STATUS_NOT_PROVISIONED = 0,
+ CLIP_STATUS_PROVISIONED,
+ CLIP_STATUS_UNKNOWN
+};
+
enum call_setting_type {
CALL_SETTING_TYPE_CLIP = 0,
CALL_SETTING_TYPE_COLP,
diff --git a/src/common.h b/src/common.h
index 6c2aeb2f..267bc730 100644
--- a/src/common.h
+++ b/src/common.h
@@ -50,13 +50,6 @@ enum network_registration_status {
};
/* 27.007 Section 7.6 */
-enum clip_status {
- CLIP_STATUS_NOT_PROVISIONED = 0,
- CLIP_STATUS_PROVISIONED,
- CLIP_STATUS_UNKNOWN
-};
-
-/* 27.007 Section 7.6 */
enum clip_validity {
CLIP_VALIDITY_VALID = 0,
CLIP_VALIDITY_WITHHELD = 1,