summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-11-23 11:00:09 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-23 11:00:09 -0600
commit67c6f97955751c6b9c96bccfc066987f65c0f931 (patch)
tree20fe031b8973445bf8a24d82ce3571fad2dc76f1 /res
parent27be3014cb50904f7aecbeb10a5203fb27c6e63c (diff)
parent0e2385581b778572d56ead08c967d78ce31302ea (diff)
Merge "Loader: Remove unneeded load_pri declarations." into 15
Diffstat (limited to 'res')
-rw-r--r--res/res_format_attr_h263.c3
-rw-r--r--res/res_format_attr_h264.c3
-rw-r--r--res/res_hep_pjsip.c3
-rw-r--r--res/res_hep_rtcp.c3
-rw-r--r--res/res_http_media_cache.c3
-rw-r--r--res/res_pjsip_endpoint_identifier_anonymous.c3
6 files changed, 6 insertions, 12 deletions
diff --git a/res/res_format_attr_h263.c b/res/res_format_attr_h263.c
index a32f40f7d..b49f1d681 100644
--- a/res/res_format_attr_h263.c
+++ b/res/res_format_attr_h263.c
@@ -269,9 +269,8 @@ static int load_module(void)
return AST_MODULE_LOAD_SUCCESS;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "H.263 Format Attribute Module",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "H.263 Format Attribute Module",
.support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_DEFAULT,
);
diff --git a/res/res_format_attr_h264.c b/res/res_format_attr_h264.c
index fa3339543..682b871f4 100644
--- a/res/res_format_attr_h264.c
+++ b/res/res_format_attr_h264.c
@@ -330,9 +330,8 @@ static int load_module(void)
return AST_MODULE_LOAD_SUCCESS;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "H.264 Format Attribute Module",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "H.264 Format Attribute Module",
.support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_DEFAULT,
);
diff --git a/res/res_hep_pjsip.c b/res/res_hep_pjsip.c
index b5be4a102..6283efc76 100644
--- a/res/res_hep_pjsip.c
+++ b/res/res_hep_pjsip.c
@@ -249,9 +249,8 @@ static int unload_module(void)
return 0;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP HEPv3 Logger",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "PJSIP HEPv3 Logger",
.support_level = AST_MODULE_SUPPORT_EXTENDED,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_DEFAULT,
);
diff --git a/res/res_hep_rtcp.c b/res/res_hep_rtcp.c
index 31b9c485b..afad0c845 100644
--- a/res/res_hep_rtcp.c
+++ b/res/res_hep_rtcp.c
@@ -180,9 +180,8 @@ static int unload_module(void)
return 0;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "RTCP HEPv3 Logger",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "RTCP HEPv3 Logger",
.support_level = AST_MODULE_SUPPORT_EXTENDED,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_DEFAULT,
);
diff --git a/res/res_http_media_cache.c b/res/res_http_media_cache.c
index 175f24c92..918686e8a 100644
--- a/res/res_http_media_cache.c
+++ b/res/res_http_media_cache.c
@@ -437,9 +437,8 @@ static int load_module(void)
return AST_MODULE_LOAD_SUCCESS;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "HTTP Media Cache Backend",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "HTTP Media Cache Backend",
.support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_DEFAULT,
);
diff --git a/res/res_pjsip_endpoint_identifier_anonymous.c b/res/res_pjsip_endpoint_identifier_anonymous.c
index a1144a88e..b47aefa94 100644
--- a/res/res_pjsip_endpoint_identifier_anonymous.c
+++ b/res/res_pjsip_endpoint_identifier_anonymous.c
@@ -128,9 +128,8 @@ static int unload_module(void)
return 0;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP Anonymous endpoint identifier",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "PJSIP Anonymous endpoint identifier",
.support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
- .load_pri = AST_MODPRI_DEFAULT,
);