[Drbd-dev] [PATCH 04/17] lru_cache: remove quoted string across lines

Tobin C. Harding me at tobin.cc
Mon Oct 2 00:34:03 CEST 2017


checkpatch emits WARNING: quoted string split across lines. This is
caused by the MODULE_AUTHOR string for multiple authors. We can call
the MODULE_AUTHOR macro multiple times instead.

Remove quoted string across lines. Replace with second call to
MODULE_AUTHOR macro.

Signed-off-by: Tobin C. Harding <me at tobin.cc>
---
 lib/lru_cache.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/lru_cache.c b/lib/lru_cache.c
index 898feb9..0d3c3bb 100644
--- a/lib/lru_cache.c
+++ b/lib/lru_cache.c
@@ -25,8 +25,8 @@
 #include <linux/seq_file.h> /* for seq_printf */
 #include <linux/lru_cache.h>
 
-MODULE_AUTHOR("Philipp Reisner <phil at linbit.com>, "
-	      "Lars Ellenberg <lars at linbit.com>");
+MODULE_AUTHOR("Philipp Reisner <phil at linbit.com>");
+MODULE_AUTHOR("Lars Ellenberg <lars at linbit.com>");
 MODULE_DESCRIPTION("lru_cache - Track sets of hot objects");
 MODULE_LICENSE("GPL");
 
-- 
2.7.4



More information about the drbd-dev mailing list