blob: b81bb1508b75e8ac4b4a25ee0218e2f9e2f51d4e [file] [log] [blame]
Amy016b7312019-09-16 15:51:28 -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#define LOG_TAG "android.hardware.tv.tuner@1.0-Lnb"
18
19#include "Lnb.h"
20#include <utils/Log.h>
21
22namespace android {
23namespace hardware {
24namespace tv {
25namespace tuner {
26namespace V1_0 {
27namespace implementation {
28
29Lnb::Lnb() {}
30
31Lnb::~Lnb() {}
32
33Return<Result> Lnb::setVoltage(FrontendLnbVoltage /* voltage */) {
34 ALOGV("%s", __FUNCTION__);
35
36 return Result::SUCCESS;
37}
38
39Return<Result> Lnb::setTone(FrontendLnbTone /* tone */) {
40 ALOGV("%s", __FUNCTION__);
41
42 return Result::SUCCESS;
43}
44
45Return<Result> Lnb::setSatellitePosition(FrontendLnbPosition /* position */) {
46 ALOGV("%s", __FUNCTION__);
47
48 return Result::SUCCESS;
49}
50
51Return<Result> Lnb::close() {
52 ALOGV("%s", __FUNCTION__);
53
54 return Result::SUCCESS;
55}
56
57} // namespace implementation
58} // namespace V1_0
59} // namespace tuner
60} // namespace tv
61} // namespace hardware
62} // namespace android