linux/drivers/media/dvb-frontends/tua6100.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Driver for Infineon tua6100 pll.
 *
 * (c) 2006 Andrew de Quincey
 *
 * Based on code found in budget-av.c, which has the following:
 * Compiled from various sources by Michael Hunold <[email protected]>
 *
 * CI interface support (c) 2004 Olivier Gournet <[email protected]> &
 *                               Andrew de Quincey <[email protected]>
 *
 * Copyright (C) 2002 Ralph Metzler <[email protected]>
 *
 * Copyright (C) 1999-2002 Ralph  Metzler
 *                       & Marcus Metzler for convergence integrated media GmbH
 */

#include <linux/slab.h>
#include <linux/module.h>
#include <linux/dvb/frontend.h>
#include <asm/types.h>

#include "tua6100.h"

struct tua6100_priv {};

static void tua6100_release(struct dvb_frontend *fe)
{}

static int tua6100_sleep(struct dvb_frontend *fe)
{}

static int tua6100_set_params(struct dvb_frontend *fe)
{}

static int tua6100_get_frequency(struct dvb_frontend *fe, u32 *frequency)
{}

static const struct dvb_tuner_ops tua6100_tuner_ops =;

struct dvb_frontend *tua6100_attach(struct dvb_frontend *fe, int addr, struct i2c_adapter *i2c)
{}
EXPORT_SYMBOL_GPL();

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();