summaryrefslogtreecommitdiff
path: root/android/hal.h
diff options
context:
space:
mode:
authorRavi kumar Veeramally <ravikumar.veeramally@linux.intel.com>2013-11-13 11:25:25 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2013-11-13 11:27:46 +0200
commitab8a2ab554041a95f64369a5a9f0a74b38f1f4d6 (patch)
treee6443c56420ba5fb12bf4161318937ee7cd1e712 /android/hal.h
parentd95bae6d86a38b9f5ed17e0a8a69ae0241006141 (diff)
downloadbluez-ab8a2ab554041a95f64369a5a9f0a74b38f1f4d6.tar.gz
android: Fix opcode parameter type from uint16_t to uint8_t
Diffstat (limited to 'android/hal.h')
-rw-r--r--android/hal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/android/hal.h b/android/hal.h
index 2ce7932af..baa47548b 100644
--- a/android/hal.h
+++ b/android/hal.h
@@ -26,8 +26,8 @@ bthh_interface_t *bt_get_hidhost_interface(void);
btpan_interface_t *bt_get_pan_interface(void);
btav_interface_t *bt_get_a2dp_interface(void);
-void bt_notify_adapter(uint16_t opcode, void *buf, uint16_t len);
+void bt_notify_adapter(uint8_t opcode, void *buf, uint16_t len);
void bt_thread_associate(void);
void bt_thread_disassociate(void);
-void bt_notify_hidhost(uint16_t opcode, void *buf, uint16_t len);
-void bt_notify_a2dp(uint16_t opcode, void *buf, uint16_t len);
+void bt_notify_hidhost(uint8_t opcode, void *buf, uint16_t len);
+void bt_notify_a2dp(uint8_t opcode, void *buf, uint16_t len);