blob: 9fe381ef455939d38c9e2a4586bdfd184eb7b82f [file] [log] [blame]
Tao Bao5747e222018-09-11 10:46:35 -07001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "healthd_mode_charger_nops.h"
18
Yifan Hong7dcf7b02019-10-08 17:27:11 -070019#include <health2impl/HalHealthLoop.h>
Tao Bao5747e222018-09-11 10:46:35 -070020
Yifan Hong7dcf7b02019-10-08 17:27:11 -070021#include "charger_utils.h"
Tao Bao5747e222018-09-11 10:46:35 -070022
Yifan Hong3aa3b3c2020-01-31 13:02:07 -080023using android::hardware::health::GetHealthServiceOrDefault;
Yifan Hong7dcf7b02019-10-08 17:27:11 -070024using android::hardware::health::V2_1::implementation::HalHealthLoop;
Tao Bao5747e222018-09-11 10:46:35 -070025
26int healthd_charger_nops(int /* argc */, char** /* argv */) {
Yifan Hong3aa3b3c2020-01-31 13:02:07 -080027 HalHealthLoop charger("charger", GetHealthServiceOrDefault());
Yifan Hong7dcf7b02019-10-08 17:27:11 -070028 return charger.StartLoop();
Tao Bao5747e222018-09-11 10:46:35 -070029}