[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1334543494-13425-1-git-send-email-valentin.ilie@gmail.com>
Date: Mon, 16 Apr 2012 05:31:34 +0300
From: Valentin Ilie <valentin.ilie@...il.com>
To: arve@...roid.com
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Valentin Ilie <valentin.ilie@...il.com>
Subject: [PATCH] Staging: android: binder.c const char* smth TO const char * const smth
Replaced static const char* var with static const char * var const smth because
smth doesn't need to be reassigned at any point else at runtime.
Signed-off-by: Valentin Ilie <valentin.ilie@...il.com>
---
drivers/staging/android/binder.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/android/binder.c b/drivers/staging/android/binder.c
index c283212..221bd3f 100644
--- a/drivers/staging/android/binder.c
+++ b/drivers/staging/android/binder.c
@@ -3303,7 +3303,7 @@ static void print_binder_proc(struct seq_file *m,
m->count = start_pos;
}
-static const char *binder_return_strings[] = {
+static const char * const binder_return_strings[] = {
"BR_ERROR",
"BR_OK",
"BR_TRANSACTION",
@@ -3324,7 +3324,7 @@ static const char *binder_return_strings[] = {
"BR_FAILED_REPLY"
};
-static const char *binder_command_strings[] = {
+static const char * const binder_command_strings[] = {
"BC_TRANSACTION",
"BC_REPLY",
"BC_ACQUIRE_RESULT",
@@ -3344,7 +3344,7 @@ static const char *binder_command_strings[] = {
"BC_DEAD_BINDER_DONE"
};
-static const char *binder_objstat_strings[] = {
+static const char * const binder_objstat_strings[] = {
"proc",
"thread",
"node",
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists