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

Commit f65d9bea authored by Clemens Buchacher's avatar Clemens Buchacher Committed by Linus Torvalds
Browse files

[PATCH] oss: don't concatenate __FUNCTION__ with strings



It's deprecated. Use "%s", __FUNCTION__ instead.

Signed-off-by: default avatarClemens Buchacher <drizzd@aon.at>
Signed-off-by: default avatarMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 288a60cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1295,7 +1295,7 @@ static int au1000_mmap(struct file *file, struct vm_area_struct *vma)
	unsigned long   size;
	int ret = 0;

	dbg(__FUNCTION__);
	dbg("%s", __FUNCTION__);
    
	lock_kernel();
	down(&s->sem);
+1 −1
Original line number Diff line number Diff line
@@ -1859,7 +1859,7 @@ static int it8172_release(struct inode *inode, struct file *file)
	struct it8172_state *s = (struct it8172_state *)file->private_data;

#ifdef IT8172_VERBOSE_DEBUG
	dbg(__FUNCTION__);
	dbg("%s", __FUNCTION__);
#endif
	lock_kernel();
	if (file->f_mode & FMODE_WRITE)