Merge "remove HAL_MODULE_INFO_SYM const"

This commit is contained in:
Nick Kralevich
2012-03-02 08:29:36 -08:00
committed by Android (Google) Code Review
3 changed files with 3 additions and 3 deletions

View File

@@ -930,7 +930,7 @@ static struct hw_module_methods_t gps_module_methods = {
.open = open_gps .open = open_gps
}; };
const struct hw_module_t HAL_MODULE_INFO_SYM = { struct hw_module_t HAL_MODULE_INFO_SYM = {
.tag = HARDWARE_MODULE_TAG, .tag = HARDWARE_MODULE_TAG,
.version_major = 1, .version_major = 1,
.version_minor = 0, .version_minor = 0,

View File

@@ -202,7 +202,7 @@ static struct hw_module_methods_t lights_module_methods = {
/* /*
* The emulator lights Module * The emulator lights Module
*/ */
const struct hw_module_t HAL_MODULE_INFO_SYM = { struct hw_module_t HAL_MODULE_INFO_SYM = {
.tag = HARDWARE_MODULE_TAG, .tag = HARDWARE_MODULE_TAG,
.version_major = 1, .version_major = 1,
.version_minor = 0, .version_minor = 0,

View File

@@ -623,7 +623,7 @@ static struct hw_module_methods_t sensors_module_methods = {
.open = open_sensors .open = open_sensors
}; };
const struct sensors_module_t HAL_MODULE_INFO_SYM = { struct sensors_module_t HAL_MODULE_INFO_SYM = {
.common = { .common = {
.tag = HARDWARE_MODULE_TAG, .tag = HARDWARE_MODULE_TAG,
.version_major = 1, .version_major = 1,