diff options
Diffstat (limited to 'drivers/media/video/w9968cf.h')
-rw-r--r-- | drivers/media/video/w9968cf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/w9968cf.h b/drivers/media/video/w9968cf.h index ec7696e8f1fa..3c95316bc030 100644 --- a/drivers/media/video/w9968cf.h +++ b/drivers/media/video/w9968cf.h | |||
@@ -298,7 +298,7 @@ struct w9968cf_device { | |||
298 | dev_warn(&cam->dev, fmt "\n", ## args); \ | 298 | dev_warn(&cam->dev, fmt "\n", ## args); \ |
299 | else if ((level) >= 5) \ | 299 | else if ((level) >= 5) \ |
300 | dev_info(&cam->dev, "[%s:%d] " fmt "\n", \ | 300 | dev_info(&cam->dev, "[%s:%d] " fmt "\n", \ |
301 | __FUNCTION__, __LINE__ , ## args); \ | 301 | __func__, __LINE__ , ## args); \ |
302 | } \ | 302 | } \ |
303 | } | 303 | } |
304 | /* For generic kernel (not device specific) messages */ | 304 | /* For generic kernel (not device specific) messages */ |
@@ -309,7 +309,7 @@ struct w9968cf_device { | |||
309 | if ((level) >= 1 && (level) <= 4) \ | 309 | if ((level) >= 1 && (level) <= 4) \ |
310 | pr_info("w9968cf: " fmt "\n", ## args); \ | 310 | pr_info("w9968cf: " fmt "\n", ## args); \ |
311 | else if ((level) >= 5) \ | 311 | else if ((level) >= 5) \ |
312 | pr_debug("w9968cf: [%s:%d] " fmt "\n", __FUNCTION__, \ | 312 | pr_debug("w9968cf: [%s:%d] " fmt "\n", __func__, \ |
313 | __LINE__ , ## args); \ | 313 | __LINE__ , ## args); \ |
314 | } \ | 314 | } \ |
315 | } | 315 | } |
@@ -321,7 +321,7 @@ struct w9968cf_device { | |||
321 | 321 | ||
322 | #undef PDBG | 322 | #undef PDBG |
323 | #define PDBG(fmt, args...) \ | 323 | #define PDBG(fmt, args...) \ |
324 | dev_info(&cam->dev, "[%s:%d] " fmt "\n", __FUNCTION__, __LINE__ , ## args); | 324 | dev_info(&cam->dev, "[%s:%d] " fmt "\n", __func__, __LINE__ , ## args); |
325 | 325 | ||
326 | #undef PDBGG | 326 | #undef PDBGG |
327 | #define PDBGG(fmt, args...) do {;} while(0); /* nothing: it's a placeholder */ | 327 | #define PDBGG(fmt, args...) do {;} while(0); /* nothing: it's a placeholder */ |