From a8af31524ad8fb036b03a67823d8372e509b41d9 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 28 Sep 2018 03:05:22 +0200 Subject: global: prefix all functions with wg_ I understand why this must be done, though I'm not so happy about having to do it. In some places, it puts us over 80 chars and we have to break lines up in further ugly ways. And in general, I think this makes things harder to read. Yet another thing we must do to please upstream. Maybe this can be replaced in the future by some kind of automatic module namespacing logic in the linker, or even combined with LTO and aggressive symbol stripping. Suggested-by: Andrew Lunn Signed-off-by: Jason A. Donenfeld --- src/selftest/counter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/selftest/counter.h') diff --git a/src/selftest/counter.h b/src/selftest/counter.h index 2a0e5a5..1b78eb6 100644 --- a/src/selftest/counter.h +++ b/src/selftest/counter.h @@ -4,7 +4,7 @@ */ #ifdef DEBUG -bool __init packet_counter_selftest(void) +bool __init wg_packet_counter_selftest(void) { unsigned int test_num = 0, i; union noise_counter counter; -- cgit v1.2.3