[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1472729861-19360-1-git-send-email-baoyou.xie@linaro.org>
Date: Thu, 1 Sep 2016 19:37:41 +0800
From: Baoyou Xie <baoyou.xie@...aro.org>
To: gregkh@...uxfoundation.org, arnd@...db.de, robh@...nel.org,
p.zabel@...gutronix.de, peter.chen@...escale.com
Cc: linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org,
baoyou.xie@...aro.org, xie.baoyou@....com.cn
Subject: [PATCH] USB: core: add missing header dependencies
We get 1 warning when building kernel with W=1:
drivers/usb/core/of.c:31:21: warning: no previous prototype for 'usb_of_get_child_node' [-Wmissing-prototypes]
In fact, this function is declared in linux/usb/of.h, so this patch
add missing header dependencies
Signed-off-by: Baoyou Xie <baoyou.xie@...aro.org>
---
drivers/usb/core/of.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/core/of.c b/drivers/usb/core/of.c
index 2289700..3de4f88 100644
--- a/drivers/usb/core/of.c
+++ b/drivers/usb/core/of.c
@@ -18,6 +18,7 @@
*/
#include <linux/of.h>
+#include <linux/usb/of.h>
/**
* usb_of_get_child_node - Find the device node match port number
--
2.7.4
Powered by blists - more mailing lists