Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1416499
| From | Ben Dooks <ben.dooks@codethink.co.uk> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] USB: core: fix missing include <linux/usb/of.h> |
| Date | 2016-06-07 20:30 +0200 |
| Message-ID | <rHtVl-686-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The helper function usb_of_get_child_node() is defined in the header <linux/usb/of.h> but this was not included. Fix the warning about usb_of_get_child_node() not being declared by adding the right include. Fixes: drivers/usb/core/of.c:31:20: warning: symbol 'usb_of_get_child_node' was not declared. Should it be static? Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> --- Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Philipp Zabel <p.zabel@pengutronix.de> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Peter Chen <peter.chen@freescale.com> Cc: linux-usb@vger.kernel.org Cc: linux-kernel@vger.kernel.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.8.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] USB: core: fix missing include <linux/usb/of.h> Ben Dooks <ben.dooks@codethink.co.uk> - 2016-06-07 20:30 +0200 Re: [PATCH] USB: core: fix missing include <linux/usb/of.h> kbuild test robot <lkp@intel.com> - 2016-06-07 21:00 +0200
csiph-web