Path: blob/master/drivers/media/dvb/frontends/cx24110.h
15112 views
/*1cx24110 - Single Chip Satellite Channel Receiver driver module23Copyright (C) 2002 Peter Hettkamp <[email protected]> based on4work5Copyright (C) 1999 Convergence Integrated Media GmbH <[email protected]>67This program is free software; you can redistribute it and/or modify8it under the terms of the GNU General Public License as published by9the Free Software Foundation; either version 2 of the License, or10(at your option) any later version.1112This program is distributed in the hope that it will be useful,13but WITHOUT ANY WARRANTY; without even the implied warranty of14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1516GNU General Public License for more details.1718You should have received a copy of the GNU General Public License19along with this program; if not, write to the Free Software20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.2122*/2324#ifndef CX24110_H25#define CX24110_H2627#include <linux/dvb/frontend.h>2829struct cx24110_config30{31/* the demodulator's i2c address */32u8 demod_address;33};3435static inline int cx24110_pll_write(struct dvb_frontend *fe, u32 val)36{37u8 buf[] = {38(u8)((val >> 24) & 0xff),39(u8)((val >> 16) & 0xff),40(u8)((val >> 8) & 0xff)41};4243if (fe->ops.write)44return fe->ops.write(fe, buf, 3);45return 0;46}4748#if defined(CONFIG_DVB_CX24110) || (defined(CONFIG_DVB_CX24110_MODULE) && defined(MODULE))49extern struct dvb_frontend* cx24110_attach(const struct cx24110_config* config,50struct i2c_adapter* i2c);51#else52static inline struct dvb_frontend* cx24110_attach(const struct cx24110_config* config,53struct i2c_adapter* i2c)54{55printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);56return NULL;57}58#endif // CONFIG_DVB_CX241105960#endif // CX24110_H616263