brintos

brintos / linux-shallow public Read only

0
0
Text · 758 B · 5703609 Raw
30 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * cxd2880_tnrdmd_mon.h4 * Sony CXD2880 DVB-T2/T tuner + demodulator driver5 * common monitor interface6 *7 * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation8 */9 10#ifndef CXD2880_TNRDMD_MON_H11#define CXD2880_TNRDMD_MON_H12 13#include "cxd2880_common.h"14#include "cxd2880_tnrdmd.h"15 16int cxd2880_tnrdmd_mon_rf_lvl(struct cxd2880_tnrdmd *tnr_dmd,17			      int *rf_lvl_db);18 19int cxd2880_tnrdmd_mon_rf_lvl_sub(struct cxd2880_tnrdmd *tnr_dmd,20				  int *rf_lvl_db);21 22int cxd2880_tnrdmd_mon_internal_cpu_status(struct cxd2880_tnrdmd23					   *tnr_dmd, u16 *status);24 25int cxd2880_tnrdmd_mon_internal_cpu_status_sub(struct26					       cxd2880_tnrdmd27					       *tnr_dmd,28					       u16 *status);29#endif30