call-settings: apply rule M11 of coding style

This commit is contained in:
Lucas De Marchi 2011-01-12 09:27:47 -02:00 committed by Denis Kenzior
parent 4614a72e2b
commit f88f81f132
1 changed files with 17 additions and 17 deletions

View File

@ -41,32 +41,32 @@ static GSList *g_drivers = NULL;
/* 27.007 Section 7.7 */
enum clir_status {
CLIR_STATUS_NOT_PROVISIONED = 0,
CLIR_STATUS_PROVISIONED_PERMANENT,
CLIR_STATUS_UNKNOWN,
CLIR_STATUS_TEMPORARY_RESTRICTED,
CLIR_STATUS_TEMPORARY_ALLOWED
CLIR_STATUS_NOT_PROVISIONED = 0,
CLIR_STATUS_PROVISIONED_PERMANENT = 1,
CLIR_STATUS_UNKNOWN = 2,
CLIR_STATUS_TEMPORARY_RESTRICTED = 3,
CLIR_STATUS_TEMPORARY_ALLOWED = 4
};
/* 27.007 Section 7.6 */
enum clip_status {
CLIP_STATUS_NOT_PROVISIONED = 0,
CLIP_STATUS_PROVISIONED,
CLIP_STATUS_UNKNOWN
CLIP_STATUS_NOT_PROVISIONED = 0,
CLIP_STATUS_PROVISIONED = 1,
CLIP_STATUS_UNKNOWN = 2
};
/* 27.007 Section 7.30 */
enum cnap_status {
CNAP_STATUS_NOT_PROVISIONED = 0,
CNAP_STATUS_PROVISIONED,
CNAP_STATUS_UNKNOWN
CNAP_STATUS_NOT_PROVISIONED = 0,
CNAP_STATUS_PROVISIONED = 1,
CNAP_STATUS_UNKNOWN = 2
};
/* 27.007 Section 7.8 */
enum colp_status {
COLP_STATUS_NOT_PROVISIONED = 0,
COLP_STATUS_PROVISIONED = 1,
COLP_STATUS_UNKNOWN = 2
COLP_STATUS_NOT_PROVISIONED = 0,
COLP_STATUS_PROVISIONED = 1,
COLP_STATUS_UNKNOWN = 2
};
/* 27.007 Section 7.9 */
@ -78,9 +78,9 @@ enum cdip_status {
/* This is not defined in 27.007, but presumably the same as CLIP/COLP */
enum colr_status {
COLR_STATUS_NOT_PROVISIONED = 0,
COLR_STATUS_PROVISIONED = 1,
COLR_STATUS_UNKNOWN = 2
COLR_STATUS_NOT_PROVISIONED = 0,
COLR_STATUS_PROVISIONED = 1,
COLR_STATUS_UNKNOWN = 2
};
enum call_setting_type {