boot control: remove getInterfaceVersion reference am: 927e00d1e9 am: 3fe093d6aa
am: 2a15abb484
Change-Id: I4eda314fe21b83feb8a85062058942d37d365ed2
diff --git a/boot_control_android.cc b/boot_control_android.cc
index 8a15049..86c0a9f 100644
--- a/boot_control_android.cc
+++ b/boot_control_android.cc
@@ -58,13 +58,11 @@
bool BootControlAndroid::Init() {
module_ = IBootControl::getService("bootctrl");
if (module_ == nullptr) {
- LOG(ERROR) << "Error getting bootctrl HIDL module.\n";
+ LOG(ERROR) << "Error getting bootctrl HIDL module.";
return false;
}
- LOG(INFO) << "Loaded boot HIDL HAL version "
- << module_->getInterfaceVersion().get_major() << "."
- << module_->getInterfaceVersion().get_minor();
+ LOG(INFO) << "Loaded boot control hidl hal.";
return true;
}