From aeb83d7054de0180c4f4b8df7d5c75cc60277558 Mon Sep 17 00:00:00 2001 From: Baoyou Xie Date: Sun, 28 Aug 2016 01:31:28 +0800 Subject: fix:memory:of_memory:add missing header dependencies We get 2 warnings when biuld kernel with W=1: drivers/memory/of_memory.c:30:30: warning: no previous prototype for 'of_get_min_tck' [-Wmissing-prototypes] drivers/memory/of_memory.c:106:30: warning: no previous prototype for 'of_get_ddr_timings' [-Wmissing-prototypes] In fact, these functions are declared in drivers/memory/of_memory.h so this patch add missing header dependencies. Signed-off-by: Baoyou Xie Signed-off-by: Greg Kroah-Hartman --- drivers/memory/of_memory.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/memory') diff --git a/drivers/memory/of_memory.c b/drivers/memory/of_memory.c index 9daf94bb8f27..568f05ed961a 100644 --- a/drivers/memory/of_memory.c +++ b/drivers/memory/of_memory.c @@ -16,6 +16,7 @@ #include #include #include +#include "of_memory.h" /** * of_get_min_tck() - extract min timing values for ddr -- cgit v1.2.3-59-g8ed1b