Lines Matching full:hw_module
55 const hw_module_t* hw_module;
61 hw_module = &HAL_MODULE_INFO_SYM;
63 if (!hw_module ||
64 strcmp(BOOT_CONTROL_HARDWARE_MODULE_ID, hw_module->id) != 0) {
68 ret = hw_get_module(BOOT_CONTROL_HARDWARE_MODULE_ID, &hw_module);
75 module_ = reinterpret_cast<boot_control_module_t*>(const_cast<hw_module_t*>(hw_module));
79 << "'" << hw_module->name << "' "
80 << "version " << (hw_module->module_api_version>>8) << "."
81 << (hw_module->module_api_version&0xff) << " "
82 << "authored by '" << hw_module->author << "'.";