Re: [RFC PATCH renesas-drivers] [RFC] of: dead_aliases_lookup can be static

2017-12-15 Thread Geert Uytterhoeven
Hi Fengguang,

On Fri, Dec 15, 2017 at 12:44 AM, kbuild test robot
 wrote:
> Fixes: 19e0da502da1 ("[RFC] of: Add of_alias_destroy()")
> Signed-off-by: Fengguang Wu 

Thank you, will fold in the offending prototype commit.

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds


[RFC PATCH renesas-drivers] [RFC] of: dead_aliases_lookup can be static

2017-12-14 Thread kbuild test robot

Fixes: 19e0da502da1 ("[RFC] of: Add of_alias_destroy()")
Signed-off-by: Fengguang Wu 
---
 base.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/of/base.c b/drivers/of/base.c
index 5d3a0ad..1f3f84c 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -1568,7 +1568,7 @@ void of_alias_create(struct property *pp,
 }
 
 #ifdef CONFIG_OF_DYNAMIC
-LIST_HEAD(dead_aliases_lookup);
+static LIST_HEAD(dead_aliases_lookup);
 
 void of_alias_destroy(const char *name)
 {