diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-08 22:20:00 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:07:59 -0400 |
commit | 7e28adb2497f6b873516163e2d29210c11777613 (patch) | |
tree | 2f65ee1bcadb2915f196a277dbac83af99685481 /drivers/media/video/ov511.h | |
parent | e9815ceea9733dfb236629f5b72f2e6486f66242 (diff) |
V4L/DVB (7518): media/video/ replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ov511.h')
-rw-r--r-- | drivers/media/video/ov511.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ov511.h b/drivers/media/video/ov511.h index 18c64222dd11..1010e51189b7 100644 --- a/drivers/media/video/ov511.h +++ b/drivers/media/video/ov511.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #ifdef OV511_DEBUG | 12 | #ifdef OV511_DEBUG |
13 | #define PDEBUG(level, fmt, args...) \ | 13 | #define PDEBUG(level, fmt, args...) \ |
14 | if (debug >= (level)) info("[%s:%d] " fmt, \ | 14 | if (debug >= (level)) info("[%s:%d] " fmt, \ |
15 | __FUNCTION__, __LINE__ , ## args) | 15 | __func__, __LINE__ , ## args) |
16 | #else | 16 | #else |
17 | #define PDEBUG(level, fmt, args...) do {} while(0) | 17 | #define PDEBUG(level, fmt, args...) do {} while(0) |
18 | #endif | 18 | #endif |