Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Sharp QM1D1B0004 satellite tuner
0004  *
0005  * Copyright (C) 2014 Akihiro Tsukada <tskd08@gmail.com>
0006  */
0007 
0008 #ifndef QM1D1B0004_H
0009 #define QM1D1B0004_H
0010 
0011 #include <media/dvb_frontend.h>
0012 
0013 struct qm1d1b0004_config {
0014     struct dvb_frontend *fe;
0015 
0016     u32 lpf_freq;   /* LPF frequency[kHz]. Default: symbol rate */
0017     bool half_step; /* use PLL frequency step of 500Hz instead of 1000Hz */
0018 };
0019 
0020 /* special values indicating to use the default in qm1d1b0004_config */
0021 #define QM1D1B0004_CFG_PLL_DFLT 0
0022 #define QM1D1B0004_CFG_LPF_DFLT 0
0023 
0024 #endif