3aa3b3c627
hwservicemanager starts in charger, so directly get the health HAL service. Also sets up Android base kernel logging. Bug: 142674987 Test: turn off device and charge, health HAL starts before charger, and inspect logs to confirm charger is reading from health HAL Test: make health HAL start after charger, and inspect logs to confirm charger is reading from health HAL. Change-Id: I5ba50a4b931735d1d14a50940e37c1e407dda34d
29 lines
1,000 B
C++
29 lines
1,000 B
C++
/*
|
|
* Copyright (C) 2019 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <android/hardware/health/2.1/IHealth.h>
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace health {
|
|
// Return health HAL service. If it is not supported on the device (with
|
|
// VINTF checks), return a default passthrough implementation.
|
|
sp<V2_1::IHealth> GetHealthServiceOrDefault();
|
|
} // namespace health
|
|
} // namespace hardware
|
|
} // namespace android
|