Path: blob/master/drivers/media/dvb/pt1/va1j5jf8007s.h
15112 views
/*1* ISDB-S driver for VA1J5JF8007/VA1J5JF80112*3* Copyright (C) 2009 HIRANO Takahito <[email protected]>4*5* based on pt1dvr - http://pt1dvr.sourceforge.jp/6* by Tomoaki Ishikawa <[email protected]>7*8* This program is free software; you can redistribute it and/or modify9* it under the terms of the GNU General Public License as published by10* the Free Software Foundation; either version 2 of the License, or11* (at your option) any later version.12*13* This program is distributed in the hope that it will be useful,14* but WITHOUT ANY WARRANTY; without even the implied warranty of15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the16* GNU General Public License for more details.17*18* You should have received a copy of the GNU General Public License19* along with this program; if not, write to the Free Software20* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.21*/2223#ifndef VA1J5JF8007S_H24#define VA1J5JF8007S_H2526enum va1j5jf8007s_frequency {27VA1J5JF8007S_20MHZ,28VA1J5JF8007S_25MHZ,29};3031struct va1j5jf8007s_config {32u8 demod_address;33enum va1j5jf8007s_frequency frequency;34};3536struct i2c_adapter;3738struct dvb_frontend *39va1j5jf8007s_attach(const struct va1j5jf8007s_config *config,40struct i2c_adapter *adap);4142/* must be called after va1j5jf8007t_attach */43int va1j5jf8007s_prepare(struct dvb_frontend *fe);4445#endif464748