summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Xie <mattx@google.com>2012-06-07 22:45:43 -0700
committerMatthew Xie <mattx@google.com>2012-07-14 11:19:23 -0700
commit657a71dde29dd35f947775fb4e35a9d77b233dd2 (patch)
tree11754312e59628bdf9d323cf9e6ff24f2005a845
parent595bced8e7c280e37a75b9bf9c1f36263434041c (diff)
downloadexternal_bluetooth_bluedroid-657a71dde29dd35f947775fb4e35a9d77b233dd2.zip
external_bluetooth_bluedroid-657a71dde29dd35f947775fb4e35a9d77b233dd2.tar.gz
external_bluetooth_bluedroid-657a71dde29dd35f947775fb4e35a9d77b233dd2.tar.bz2
make HAL_MODULE_INFO_SYM non const
-rw-r--r--btif/src/bluetooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/btif/src/bluetooth.c b/btif/src/bluetooth.c
index b6cbc39..f7e80d9 100644
--- a/btif/src/bluetooth.c
+++ b/btif/src/bluetooth.c
@@ -403,7 +403,7 @@ static struct hw_module_methods_t bt_stack_module_methods = {
.open = open_bluetooth_stack,
};
-const struct hw_module_t HAL_MODULE_INFO_SYM = {
+struct hw_module_t HAL_MODULE_INFO_SYM = {
.tag = HARDWARE_MODULE_TAG,
.version_major = 1,
.version_minor = 0,