swh:1:snp:3c665ee4f67729f27f2e40193ab88e7298cf0fef
Raw File
Tip revision: 8f3d9f354286745c751374f5f1fcafee6b3f3136 authored by Linus Torvalds on 12 April 2020, 19:35:55 UTC
Linux 5.7-rc1
Tip revision: 8f3d9f3
qm1d1b0004.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Sharp QM1D1B0004 satellite tuner
 *
 * Copyright (C) 2014 Akihiro Tsukada <tskd08@gmail.com>
 */

#ifndef QM1D1B0004_H
#define QM1D1B0004_H

#include <media/dvb_frontend.h>

struct qm1d1b0004_config {
	struct dvb_frontend *fe;

	u32 lpf_freq;   /* LPF frequency[kHz]. Default: symbol rate */
	bool half_step; /* use PLL frequency step of 500Hz instead of 1000Hz */
};

/* special values indicating to use the default in qm1d1b0004_config */
#define QM1D1B0004_CFG_PLL_DFLT 0
#define QM1D1B0004_CFG_LPF_DFLT 0

#endif
back to top