diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-08-27 20:23:08 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2007-08-27 20:23:08 -0400 |
commit | c7363325efe76153336d10dd7c7d5b82e3d72bbf (patch) | |
tree | a2589aedd78a8f2afbca48721ca60eee98b06f10 /linux/drivers/media/video/mt20xx.h | |
parent | 918c1e336d569e3b7731fc8821cbcabebe0cd609 (diff) | |
download | mediapointer-dvb-s2-c7363325efe76153336d10dd7c7d5b82e3d72bbf.tar.gz mediapointer-dvb-s2-c7363325efe76153336d10dd7c7d5b82e3d72bbf.tar.bz2 |
mt20xx: convert from tuner sub-driver into dvb_frontend module
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Acked-by: Mike Isely <isely@pobox.com>
Acked-by: Steven Toth <stoth@hauppauge.com>
Acked-by: Patrick Boettcher <pb@linuxtv.org>
Acked-by: Jarod Wilson <jwilson@redhat.com>
Acked-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/drivers/media/video/mt20xx.h')
-rw-r--r-- | linux/drivers/media/video/mt20xx.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/linux/drivers/media/video/mt20xx.h b/linux/drivers/media/video/mt20xx.h new file mode 100644 index 000000000..877dbef89 --- /dev/null +++ b/linux/drivers/media/video/mt20xx.h @@ -0,0 +1,27 @@ +/* + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +*/ + +#ifndef __MT20XX_H__ +#define __MT20XX_H__ + +#include <linux/i2c.h> +#include "dvb_frontend.h" + +extern struct dvb_frontend *microtune_attach(struct dvb_frontend *fe, + struct i2c_adapter* i2c_adap, + u8 i2c_addr); + +#endif /* __MT20XX_H__ */ |