summaryrefslogtreecommitdiff
path: root/linux/drivers/media/common/tuners/xc5000_priv.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2008-04-26 13:13:56 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-26 13:13:56 -0300
commitaac29554759ba1097551414afc35ed9fa13056c2 (patch)
treede3052547dcad0585d2b7fc6b7da07ff6f2be999 /linux/drivers/media/common/tuners/xc5000_priv.h
parent92541c586e6655f2175fe5ec00836f5ef1ce1cb3 (diff)
downloadmediapointer-dvb-s2-aac29554759ba1097551414afc35ed9fa13056c2.tar.gz
mediapointer-dvb-s2-aac29554759ba1097551414afc35ed9fa13056c2.tar.bz2
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Move tuners to common/tuners There were several issues in the past, caused by the hybrid tuner design, since now, the same tuner can be used by drivers/media/dvb and drivers/media/video. This patch moves those common tuners into a common dir. It also moves saa7146 driver into drivers/media/video, where other hybrid drivers are placed. Kconfig items were rearranged, to split V4L/DVB core from their drivers. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/common/tuners/xc5000_priv.h')
-rw-r--r--linux/drivers/media/common/tuners/xc5000_priv.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/linux/drivers/media/common/tuners/xc5000_priv.h b/linux/drivers/media/common/tuners/xc5000_priv.h
new file mode 100644
index 000000000..13b2d1934
--- /dev/null
+++ b/linux/drivers/media/common/tuners/xc5000_priv.h
@@ -0,0 +1,36 @@
+/*
+ * Driver for Xceive XC5000 "QAM/8VSB single chip tuner"
+ *
+ * Copyright (c) 2007 Steven Toth <stoth@hauppauge.com>
+ *
+ * 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 XC5000_PRIV_H
+#define XC5000_PRIV_H
+
+struct xc5000_priv {
+ struct xc5000_config *cfg;
+ struct i2c_adapter *i2c;
+
+ u32 freq_hz;
+ u32 bandwidth;
+ u8 video_standard;
+ u8 rf_mode;
+ u8 fwloaded;
+};
+
+#endif