Merge remote-tracking branch 'moduleh/module.h-split'
[linux-2.6/next.git] / drivers / media / common / tuners / tda18212_priv.h
blob9adff9356b73d7c9bedd49a3dd86b4920ede0d8e
1 /*
2 * NXP TDA18212HN silicon tuner driver
4 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef TDA18212_PRIV_H
22 #define TDA18212_PRIV_H
24 #include "tda18212.h"
26 #define LOG_PREFIX "tda18212"
28 #undef dbg
29 #define dbg(f, arg...) \
30 if (debug) \
31 printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
32 #undef err
33 #define err(f, arg...) printk(KERN_ERR LOG_PREFIX": " f "\n" , ## arg)
34 #undef info
35 #define info(f, arg...) printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
36 #undef warn
37 #define warn(f, arg...) printk(KERN_WARNING LOG_PREFIX": " f "\n" , ## arg)
39 struct tda18212_priv {
40 struct tda18212_config *cfg;
41 struct i2c_adapter *i2c;
44 #endif