summaryrefslogtreecommitdiff
path: root/mesh/mesh-config.h
diff options
context:
space:
mode:
authorInga Stotland <inga.stotland@intel.com>2020-08-12 12:03:17 -0700
committerBrian Gix <brian.gix@intel.com>2020-08-13 15:04:03 -0700
commit2614f2b7324bb9a3b0fa727a2ce2d86340a32a47 (patch)
treecfb6bf1022f0d8774561c13bfd6a50b837b44f2d /mesh/mesh-config.h
parent8ea7d5842817bc339f482be3a53cadb7df7aa76d (diff)
downloadbluez-2614f2b7324bb9a3b0fa727a2ce2d86340a32a47.tar.gz
mesh: Make mesh config model binding API consistent
This changes the order of function arguments in mesh_config_model_binding_add() and mesh_config_model_binding_del() to make them consistent with the rest of mesh_config_model... APIs
Diffstat (limited to 'mesh/mesh-config.h')
-rw-r--r--mesh/mesh-config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh/mesh-config.h b/mesh/mesh-config.h
index f15f3f376..50a55d51e 100644
--- a/mesh/mesh-config.h
+++ b/mesh/mesh-config.h
@@ -152,10 +152,10 @@ bool mesh_config_comp_page_add(struct mesh_config *cfg, uint8_t page,
uint8_t *data, uint16_t size);
bool mesh_config_comp_page_mv(struct mesh_config *cfg, uint8_t old, uint8_t nw);
bool mesh_config_model_binding_add(struct mesh_config *cfg, uint16_t ele_addr,
- bool vendor, uint32_t mod_id,
+ uint32_t mod_id, bool vendor,
uint16_t app_idx);
bool mesh_config_model_binding_del(struct mesh_config *cfg, uint16_t ele_addr,
- bool vendor, uint32_t mod_id,
+ uint32_t mod_id, bool vendor,
uint16_t app_idx);
bool mesh_config_model_pub_add(struct mesh_config *cfg, uint16_t ele_addr,
uint32_t mod_id, bool vendor,