Skip to content

Commit 47619c4

Browse files
Juha Heiskanenjuhhei01
authored andcommitted
Function name code conventions fix.
1 parent 1350bc5 commit 47619c4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

source/6LoWPAN/Thread/thread_neighbor_class.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ bool thread_neighbor_class_request_full_data_setup(thread_neighbor_class_t *clas
137137

138138
}
139139

140-
bool thread_neighbor_class_request_secured_data_request(thread_neighbor_class_t *class_ptr, uint8_t attribute_index)
140+
bool thread_neighbor_class_secured_data_request(thread_neighbor_class_t *class_ptr, uint8_t attribute_index)
141141
{
142142
thread_neigh_table_entry_t *entry = thread_neighbor_class_table_entry_get(class_ptr,attribute_index);
143143
if (!entry) {
@@ -154,7 +154,7 @@ void thread_neighbor_class_request_full_data_setup_set(thread_neighbor_class_t *
154154
}
155155
}
156156

157-
void thread_neighbor_class_request_secured_data_request_set(thread_neighbor_class_t *class_ptr, uint8_t attribute_index, bool value)
157+
void thread_neighbor_class_secured_data_request_set(thread_neighbor_class_t *class_ptr, uint8_t attribute_index, bool value)
158158
{
159159
thread_neigh_table_entry_t *entry = thread_neighbor_class_table_entry_get(class_ptr,attribute_index);
160160
if (entry) {

source/6LoWPAN/Thread/thread_neighbor_class.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ bool thread_neighbor_class_mleid_compare(struct thread_neighbor_class_s *class_p
4646

4747
bool thread_neighbor_class_request_full_data_setup(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);
4848

49-
bool thread_neighbor_class_request_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);
49+
bool thread_neighbor_class_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);
5050

5151
void thread_neighbor_class_mode_parse_to_entry(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, uint8_t mode);
5252

5353
uint8_t thread_neighbor_class_mode_write_from_entry(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);
5454

5555
void thread_neighbor_class_request_full_data_setup_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value);
5656

57-
void thread_neighbor_class_request_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value);
57+
void thread_neighbor_class_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value);
5858

5959
void thread_neighbor_class_entry_remove(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index);
6060

test/nanostack/unittest/stub/thread_neighbor_class_stub.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ bool thread_neighbor_class_request_full_data_setup(struct thread_neighbor_class_
8484
return true;
8585
}
8686

87-
bool thread_neighbor_class_request_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index)
87+
bool thread_neighbor_class_secured_data_request(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index)
8888
{
8989
return false;
9090
}
@@ -104,7 +104,7 @@ void thread_neighbor_class_request_full_data_setup_set(struct thread_neighbor_cl
104104

105105
}
106106

107-
void thread_neighbor_class_request_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value)
107+
void thread_neighbor_class_secured_data_request_set(struct thread_neighbor_class_s *class_ptr, uint8_t attribute_index, bool value)
108108
{
109109

110110
}

0 commit comments

Comments
 (0)