mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 05:50:19 +00:00
V4L/DVB (7523): media/video/et61x251 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>
This commit is contained in:
parent
d80e134dc8
commit
22cc065bad
@ -199,7 +199,7 @@ do { \
|
|||||||
dev_info(&cam->usbdev->dev, fmt "\n", ## args); \
|
dev_info(&cam->usbdev->dev, fmt "\n", ## args); \
|
||||||
else if ((level) >= 3) \
|
else if ((level) >= 3) \
|
||||||
dev_info(&cam->usbdev->dev, "[%s:%s:%d] " fmt "\n", \
|
dev_info(&cam->usbdev->dev, "[%s:%s:%d] " fmt "\n", \
|
||||||
__FILE__, __FUNCTION__, __LINE__ , ## args); \
|
__FILE__, __func__, __LINE__ , ## args); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
# define KDBG(level, fmt, args...) \
|
# define KDBG(level, fmt, args...) \
|
||||||
@ -209,7 +209,7 @@ do { \
|
|||||||
pr_info("et61x251: " fmt "\n", ## args); \
|
pr_info("et61x251: " fmt "\n", ## args); \
|
||||||
else if ((level) == 3) \
|
else if ((level) == 3) \
|
||||||
pr_debug("sn9c102: [%s:%s:%d] " fmt "\n", __FILE__, \
|
pr_debug("sn9c102: [%s:%s:%d] " fmt "\n", __FILE__, \
|
||||||
__FUNCTION__, __LINE__ , ## args); \
|
__func__, __LINE__ , ## args); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
# define V4LDBG(level, name, cmd) \
|
# define V4LDBG(level, name, cmd) \
|
||||||
@ -225,7 +225,7 @@ do { \
|
|||||||
|
|
||||||
#undef PDBG
|
#undef PDBG
|
||||||
#define PDBG(fmt, args...) \
|
#define PDBG(fmt, args...) \
|
||||||
dev_info(&cam->usbdev->dev, "[%s:%s:%d] " fmt "\n", __FILE__, __FUNCTION__, \
|
dev_info(&cam->usbdev->dev, "[%s:%s:%d] " fmt "\n", __FILE__, __func__, \
|
||||||
__LINE__ , ## args)
|
__LINE__ , ## args)
|
||||||
|
|
||||||
#undef PDBGG
|
#undef PDBGG
|
||||||
|
Loading…
Reference in New Issue
Block a user