Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d80e134d authored by Harvey Harrison's avatar Harvey Harrison Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (7522): media/video/em28xx replace remaining __FUNCTION__ occurrences



__FUNCTION__ is gcc-specific, use __func__

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 32d83efc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -51,7 +51,7 @@ MODULE_PARM_DESC(debug, "activates debug info");
#define dprintk(fmt, arg...) do {					\
#define dprintk(fmt, arg...) do {					\
	    if (debug)							\
	    if (debug)							\
		printk(KERN_INFO "em28xx-audio %s: " fmt,		\
		printk(KERN_INFO "em28xx-audio %s: " fmt,		\
				  __FUNCTION__, ##arg); 		\
				  __func__, ##arg); 		\
	} while (0)
	} while (0)


static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
+3 −3
Original line number Original line Diff line number Diff line
@@ -38,7 +38,7 @@ MODULE_PARM_DESC(core_debug,"enable debug messages [core]");
#define em28xx_coredbg(fmt, arg...) do {\
#define em28xx_coredbg(fmt, arg...) do {\
	if (core_debug) \
	if (core_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
		printk(KERN_INFO "%s %s :"fmt, \
			 dev->name, __FUNCTION__ , ##arg); } while (0)
			 dev->name, __func__ , ##arg); } while (0)


static unsigned int reg_debug;
static unsigned int reg_debug;
module_param(reg_debug,int,0644);
module_param(reg_debug,int,0644);
@@ -47,7 +47,7 @@ MODULE_PARM_DESC(reg_debug,"enable debug messages [URB reg]");
#define em28xx_regdbg(fmt, arg...) do {\
#define em28xx_regdbg(fmt, arg...) do {\
	if (reg_debug) \
	if (reg_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
		printk(KERN_INFO "%s %s :"fmt, \
			 dev->name, __FUNCTION__ , ##arg); } while (0)
			 dev->name, __func__ , ##arg); } while (0)


static unsigned int isoc_debug;
static unsigned int isoc_debug;
module_param(isoc_debug,int,0644);
module_param(isoc_debug,int,0644);
@@ -56,7 +56,7 @@ MODULE_PARM_DESC(isoc_debug,"enable debug messages [isoc transfers]");
#define em28xx_isocdbg(fmt, arg...) do {\
#define em28xx_isocdbg(fmt, arg...) do {\
	if (isoc_debug) \
	if (isoc_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
		printk(KERN_INFO "%s %s :"fmt, \
			 dev->name, __FUNCTION__ , ##arg); } while (0)
			 dev->name, __func__ , ##arg); } while (0)


static int alt = EM28XX_PINOUT;
static int alt = EM28XX_PINOUT;
module_param(alt, int, 0644);
module_param(alt, int, 0644);
+1 −1
Original line number Original line Diff line number Diff line
@@ -45,7 +45,7 @@ MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");
			printk(fmt, ##args); } while (0)
			printk(fmt, ##args); } while (0)
#define dprintk2(lvl,fmt, args...) if (i2c_debug>=lvl) do{ \
#define dprintk2(lvl,fmt, args...) if (i2c_debug>=lvl) do{ \
			printk(KERN_DEBUG "%s at %s: " fmt, \
			printk(KERN_DEBUG "%s at %s: " fmt, \
			dev->name, __FUNCTION__ , ##args); } while (0)
			dev->name, __func__ , ##args); } while (0)


/*
/*
 * em2800_i2c_send_max4()
 * em2800_i2c_send_max4()
+1 −1
Original line number Original line Diff line number Diff line
@@ -52,7 +52,7 @@
#define em28xx_videodbg(fmt, arg...) do {\
#define em28xx_videodbg(fmt, arg...) do {\
	if (video_debug) \
	if (video_debug) \
		printk(KERN_INFO "%s %s :"fmt, \
		printk(KERN_INFO "%s %s :"fmt, \
			 dev->name, __FUNCTION__ , ##arg); } while (0)
			 dev->name, __func__ , ##arg); } while (0)


MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_DESCRIPTION(DRIVER_DESC);