boot control: remove getInterfaceVersion reference am: 927e00d1e9 am: 3fe093d6aa am: 2a15abb484
am: 224bdd888f
Change-Id: I07147fa3816df223cd9ab27e7a441a677a7f7734
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;
}