diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-08-20 20:04:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:06:04 -0400 |
commit | c996899d0bc2414c7ff4682500344eb912d5ee1d (patch) | |
tree | 6cac6db89cf325102bef22a34d8d94f04449e8b7 /drivers/media/video | |
parent | d90d9f5a0ae9eb80bb3a33472074a114af7e548d (diff) |
V4L/DVB (6074): tuner: fix ifdef tags to match actual file name
The file, tuner-driver.h was originally named tuner-hw.h, but we decided to
rename it. At the time, I had forgotten to change the #ifdef __TUNER_HW_H__
to #ifdef __TUNER_DRIVER_H__ . This patch corrects that.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/tuner-driver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/tuner-driver.h b/drivers/media/video/tuner-driver.h index fa51b7cec691..145045561a51 100644 --- a/drivers/media/video/tuner-driver.h +++ b/drivers/media/video/tuner-driver.h | |||
@@ -19,8 +19,8 @@ | |||
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef __TUNER_HW_H__ | 22 | #ifndef __TUNER_DRIVER_H__ |
23 | #define __TUNER_HW_H__ | 23 | #define __TUNER_DRIVER_H__ |
24 | 24 | ||
25 | #include <linux/videodev2.h> | 25 | #include <linux/videodev2.h> |
26 | #include <linux/i2c.h> | 26 | #include <linux/i2c.h> |
@@ -95,7 +95,7 @@ extern int tea5767_tuner_init(struct i2c_client *c); | |||
95 | printk(KERN_DEBUG "%s %d-%04x: " fmt, t->i2c.driver->driver.name, \ | 95 | printk(KERN_DEBUG "%s %d-%04x: " fmt, t->i2c.driver->driver.name, \ |
96 | i2c_adapter_id(t->i2c.adapter), t->i2c.addr , ##arg); } while (0) | 96 | i2c_adapter_id(t->i2c.adapter), t->i2c.addr , ##arg); } while (0) |
97 | 97 | ||
98 | #endif /* __TUNER_HW_H__ */ | 98 | #endif /* __TUNER_DRIVER_H__ */ |
99 | 99 | ||
100 | /* | 100 | /* |
101 | * Overrides for Emacs so that we follow Linus's tabbing style. | 101 | * Overrides for Emacs so that we follow Linus's tabbing style. |