mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-04 15:39:59 +00:00
hid_host: remove const specifier for value type
This commit is contained in:
parent
f763b8ceaf
commit
2cfd07fa7f
@ -154,7 +154,7 @@ const uint8_t * hid_descriptor_storage_get_descriptor_data(uint16_t hid_cid){
|
|||||||
return &hid_host_descriptor_storage[connection->hid_descriptor_offset];
|
return &hid_host_descriptor_storage[connection->hid_descriptor_offset];
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint16_t hid_descriptor_storage_get_descriptor_len(uint16_t hid_cid){
|
uint16_t hid_descriptor_storage_get_descriptor_len(uint16_t hid_cid){
|
||||||
hid_host_connection_t * connection = hid_host_get_connection_for_hid_cid(hid_cid);
|
hid_host_connection_t * connection = hid_host_get_connection_for_hid_cid(hid_cid);
|
||||||
if (!connection){
|
if (!connection){
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -266,7 +266,7 @@ const uint8_t * hid_descriptor_storage_get_descriptor_data(uint16_t hid_cid);
|
|||||||
* @param hid_cid
|
* @param hid_cid
|
||||||
* @result length
|
* @result length
|
||||||
*/
|
*/
|
||||||
const uint16_t hid_descriptor_storage_get_descriptor_len(uint16_t hid_cid);
|
uint16_t hid_descriptor_storage_get_descriptor_len(uint16_t hid_cid);
|
||||||
|
|
||||||
/* API_END */
|
/* API_END */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user