[PATCH] drivers: android: binder.c: Fix indentation of multi-line comment

From: Abhishek C
Date: Sat Mar 13 2021 - 11:18:00 EST


Fixed alignment of multi-line comment.
Added a * for each line of the comment.

Signed-off-by: Abhishek C <astro.abhishek02@xxxxxxxxx>
---
drivers/android/binder.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/android/binder.c b/drivers/android/binder.c
index c119736ca56a..700719c58147 100644
--- a/drivers/android/binder.c
+++ b/drivers/android/binder.c
@@ -4617,8 +4617,9 @@ static long binder_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
unsigned int size = _IOC_SIZE(cmd);
void __user *ubuf = (void __user *)arg;

- /*pr_info("binder_ioctl: %d:%d %x %lx\n",
- proc->pid, current->pid, cmd, arg);*/
+ /* pr_info("binder_ioctl: %d:%d %x %lx\n",
+ * proc->pid, current->pid, cmd, arg);
+ */

binder_selftest_alloc(&proc->alloc);

@@ -5750,8 +5751,8 @@ static int __init binder_init(void)
if (!IS_ENABLED(CONFIG_ANDROID_BINDERFS) &&
strcmp(binder_devices_param, "") != 0) {
/*
- * Copy the module_parameter string, because we don't want to
- * tokenize it in-place.
+ * Copy the module_parameter string, because we don't want to
+ * tokenize it in-place.
*/
device_names = kstrdup(binder_devices_param, GFP_KERNEL);
if (!device_names) {
--
2.25.1