diff options
author | Paul Fox <pgf@laptop.org> | 2009-10-07 11:13:01 -0400 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2010-04-27 15:01:45 -0400 |
commit | c774c13dd2826eb91ab6396fd8501df2fc2d83b3 (patch) | |
tree | 7ca83edfda3d4f0bfc37e3d1c4ea2b6b4583299a /drivers/video/via/via_i2c.c | |
parent | 277d32a36cba0b42c9c6836ff07f9b978566e95c (diff) |
suppress verbose debug messages: change printk() to DEBUG_MSG()
[jc: no signoff, added my own]
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: ScottFang@viatech.com.cn
Cc: JosephChan@via.com.tw
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'drivers/video/via/via_i2c.c')
-rw-r--r-- | drivers/video/via/via_i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/via/via_i2c.c b/drivers/video/via/via_i2c.c index 8f8e0bf0cf9..fe5535cf148 100644 --- a/drivers/video/via/via_i2c.c +++ b/drivers/video/via/via_i2c.c | |||
@@ -26,7 +26,7 @@ static void via_i2c_setscl(void *data, int state) | |||
26 | u8 val; | 26 | u8 val; |
27 | struct via_i2c_adap_cfg *adap_data = data; | 27 | struct via_i2c_adap_cfg *adap_data = data; |
28 | 28 | ||
29 | printk(KERN_DEBUG "reading index 0x%02x from IO 0x%x\n", | 29 | DEBUG_MSG(KERN_DEBUG "reading index 0x%02x from IO 0x%x\n", |
30 | adap_data->ioport_index, adap_data->io_port); | 30 | adap_data->ioport_index, adap_data->io_port); |
31 | val = viafb_read_reg(adap_data->io_port, | 31 | val = viafb_read_reg(adap_data->io_port, |
32 | adap_data->ioport_index) & 0xF0; | 32 | adap_data->ioport_index) & 0xF0; |
@@ -140,7 +140,7 @@ static int create_i2c_bus(struct i2c_adapter *adapter, | |||
140 | struct via_i2c_adap_cfg *adap_cfg, | 140 | struct via_i2c_adap_cfg *adap_cfg, |
141 | struct pci_dev *pdev) | 141 | struct pci_dev *pdev) |
142 | { | 142 | { |
143 | printk(KERN_DEBUG "viafb: creating bus adap=0x%p, algo_bit_data=0x%p, adap_cfg=0x%p\n", adapter, algo, adap_cfg); | 143 | DEBUG_MSG(KERN_DEBUG "viafb: creating bus adap=0x%p, algo_bit_data=0x%p, adap_cfg=0x%p\n", adapter, algo, adap_cfg); |
144 | 144 | ||
145 | algo->setsda = via_i2c_setsda; | 145 | algo->setsda = via_i2c_setsda; |
146 | algo->setscl = via_i2c_setscl; | 146 | algo->setscl = via_i2c_setscl; |