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
26 #define LOG_PREFIX "tda18212"
29 #define dbg(f, arg...) \
31 printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
33 #define err(f, arg...) printk(KERN_ERR LOG_PREFIX": " f "\n" , ## arg)
35 #define info(f, arg...) printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
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
;