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 | 12aa67a63d2bf4e6500af6b2de40d18fa0bc1360 (patch) | |
tree | 9bc60814db3348c19bb7ed834d197b9aaca04a9b /drivers/media/video/ovcamchip | |
parent | 22cc065bad19b0a19adecdc753ded7a7b0c752fa (diff) |
V4L/DVB (7524): media/video/ovcamchip 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/ovcamchip')
-rw-r--r-- | drivers/media/video/ovcamchip/ovcamchip_priv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/ovcamchip/ovcamchip_priv.h b/drivers/media/video/ovcamchip/ovcamchip_priv.h index 50c7763d44b3..9afa4fe47726 100644 --- a/drivers/media/video/ovcamchip/ovcamchip_priv.h +++ b/drivers/media/video/ovcamchip/ovcamchip_priv.h | |||
@@ -24,11 +24,11 @@ extern int ovcamchip_debug; | |||
24 | 24 | ||
25 | #define PDEBUG(level, fmt, args...) \ | 25 | #define PDEBUG(level, fmt, args...) \ |
26 | if (ovcamchip_debug >= (level)) pr_debug("[%s:%d] " fmt "\n", \ | 26 | if (ovcamchip_debug >= (level)) pr_debug("[%s:%d] " fmt "\n", \ |
27 | __FUNCTION__, __LINE__ , ## args) | 27 | __func__, __LINE__ , ## args) |
28 | 28 | ||
29 | #define DDEBUG(level, dev, fmt, args...) \ | 29 | #define DDEBUG(level, dev, fmt, args...) \ |
30 | if (ovcamchip_debug >= (level)) dev_dbg(dev, "[%s:%d] " fmt "\n", \ | 30 | if (ovcamchip_debug >= (level)) dev_dbg(dev, "[%s:%d] " fmt "\n", \ |
31 | __FUNCTION__, __LINE__ , ## args) | 31 | __func__, __LINE__ , ## args) |
32 | 32 | ||
33 | /* Number of times to retry chip detection. Increase this if you are getting | 33 | /* Number of times to retry chip detection. Increase this if you are getting |
34 | * "Failed to init camera chip" */ | 34 | * "Failed to init camera chip" */ |