[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20190723120403.219330-1-tzungbi@google.com>
Date: Tue, 23 Jul 2019 20:04:03 +0800
From: Tzung-Bi Shih <tzungbi@...gle.com>
To: bleung@...omium.org, enric.balletbo@...labora.com,
groeck@...omium.org
Cc: linux-kernel@...r.kernel.org, cychiang@...gle.com,
dgreid@...gle.com, tzungbi@...gle.com
Subject: [PATCH] platform/chrome: cros_ec_trace: update generating script
To remove ", \" from the last line.
Signed-off-by: Tzung-Bi Shih <tzungbi@...gle.com>
---
drivers/platform/chrome/cros_ec_trace.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/drivers/platform/chrome/cros_ec_trace.c b/drivers/platform/chrome/cros_ec_trace.c
index 0a76412095a9..9b6aba22441f 100644
--- a/drivers/platform/chrome/cros_ec_trace.c
+++ b/drivers/platform/chrome/cros_ec_trace.c
@@ -6,7 +6,23 @@
#define TRACE_SYMBOL(a) {a, #a}
// Generate the list using the following script:
-// sed -n 's/^#define \(EC_CMD_[[:alnum:]_]*\)\s.*/\tTRACE_SYMBOL(\1), \\/p' include/linux/mfd/cros_ec_commands.h
+// sed -n 's/^#define \(EC_CMD_[[:alnum:]_]*\)\s.*/\tTRACE_SYMBOL(\1), \\/p' \
+// include/linux/mfd/cros_ec_commands.h | awk '
+// BEGIN {
+// on = 0;
+// }
+// {
+// if (on)
+// print buf;
+// else
+// on = 1;
+// buf = $0;
+// }
+// END {
+// gsub(/, \\/, "", buf);
+// print buf;
+// }
+// '
#define EC_CMDS \
TRACE_SYMBOL(EC_CMD_PROTO_VERSION), \
TRACE_SYMBOL(EC_CMD_HELLO), \
--
2.22.0.657.g960e92d24f-goog
Powered by blists - more mailing lists