brintos

brintos / linux-shallow public Read only

0
0
Text · 661 B · b2e4f43 Raw
30 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 *  Driver for Microtune MT2131 "QAM/8VSB single chip tuner"4 *5 *  Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>6 */7 8#ifndef __MT2131_PRIV_H__9#define __MT2131_PRIV_H__10 11/* Regs */12#define MT2131_PWR              0x0713#define MT2131_UPC_1            0x0b14#define MT2131_AGC_RL           0x1015#define MT2131_MISC_2           0x1516 17/* frequency values in KHz */18#define MT2131_IF1              122019#define MT2131_IF2              4400020#define MT2131_FREF             1600021 22struct mt2131_priv {23	struct mt2131_config *cfg;24	struct i2c_adapter   *i2c;25 26	u32 frequency;27};28 29#endif /* __MT2131_PRIV_H__ */30