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

Commit 0f063c68 authored by Curtis McEnroe's avatar Curtis McEnroe Committed by Greg Kroah-Hartman
Browse files

tm6000: Cleaned up code style in tm6000-i2c.c



Replaced __FUNCTION__ with __func__

Signed-off-by: default avatarCurtis McEnroe <programble@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 94b27661
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");

#define i2c_dprintk(lvl, fmt, args...) if (i2c_debug >= lvl) do { \
			printk(KERN_DEBUG "%s at %s: " fmt, \
			dev->name, __FUNCTION__ , ##args); } while (0)
			dev->name, __func__, ##args); } while (0)

static int tm6000_i2c_send_regs(struct tm6000_core *dev, unsigned char addr,
				__u8 reg, char *buf, int len)