diff options
author | Michael Hunold <devnull@localhost> | 2003-09-10 10:20:06 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-09-10 10:20:06 +0000 |
commit | 9f866ff73612b54c207f8f5473d885ce1bd7d4e9 (patch) | |
tree | 93fc34d0fe462515d89322a51e929d4807d09cd0 /linux | |
parent | dc927528751e51f3652b77cc6c62f0f418c0f43b (diff) | |
download | mediapointer-dvb-s2-9f866ff73612b54c207f8f5473d885ce1bd7d4e9.tar.gz mediapointer-dvb-s2-9f866ff73612b54c207f8f5473d885ce1bd7d4e9.tar.bz2 |
Change #if to #ifdef
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/frontends/mt312.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/mt312.c b/linux/drivers/media/dvb/frontends/mt312.c index 5318eb260..fbef19294 100644 --- a/linux/drivers/media/dvb/frontends/mt312.c +++ b/linux/drivers/media/dvb/frontends/mt312.c @@ -85,7 +85,7 @@ static int mt312_read(struct dvb_i2c_bus *i2c, printk(KERN_ERR "%s: ret == %d\n", __FUNCTION__, ret); return -EREMOTEIO; } -#if MT312_DEBUG +#ifdef MT312_DEBUG { int i; printk(KERN_INFO "R(%d):", reg & 0x7f); @@ -106,7 +106,7 @@ static int mt312_write(struct dvb_i2c_bus *i2c, u8 buf[count + 1]; struct i2c_msg msg; -#if MT312_DEBUG +#ifdef MT312_DEBUG { int i; printk(KERN_INFO "W(%d):", reg & 0x7f); |