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

Commit 6b64640c authored by Elad Wexler's avatar Elad Wexler Committed by Martijn Coenen
Browse files

UPSTREAM: android: binder: Prefer __func__ to using hardcoded function name



Coding style fixup

Signed-off-by: default avatarElad Wexler <elad.wexler@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 00c41cddebde8d1a635bf81a7b255b7e56fd0d15)

Change-Id: I795e2a9f525c4a8df5cd0a81842a88529ba54f21
parent 9e9a3e1d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4910,7 +4910,7 @@ static int binder_mmap(struct file *filp, struct vm_area_struct *vma)
	return ret;

err_bad_arg:
	pr_err("binder_mmap: %d %lx-%lx %s failed %d\n",
	pr_err("%s: %d %lx-%lx %s failed %d\n", __func__,
	       proc->pid, vma->vm_start, vma->vm_end, failure_string, ret);
	return ret;
}
@@ -4920,7 +4920,7 @@ static int binder_open(struct inode *nodp, struct file *filp)
	struct binder_proc *proc;
	struct binder_device *binder_dev;

	binder_debug(BINDER_DEBUG_OPEN_CLOSE, "binder_open: %d:%d\n",
	binder_debug(BINDER_DEBUG_OPEN_CLOSE, "%s: %d:%d\n", __func__,
		     current->group_leader->pid, current->pid);

	proc = kzalloc(sizeof(*proc), GFP_KERNEL);