From: Martin Blumenstingl Date: Wed, 18 Apr 2018 19:39:50 +0000 (+0200) Subject: usb: core: phy: add missing forward declaration for "struct device" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9d3cd19be3e2675f5b30172f3305f79ddcb91023;p=linux.git usb: core: phy: add missing forward declaration for "struct device" Currently hcd.c is the only consumer of the usb_phy_roothub logic. This already includes the required header files so struct device is known. However, future consumers might not know about struct device. Add a forward declaration for struct device to fix potential future consumers which don't include any of the struct device API headers. Fixes: 07dbff0ddbd86c ("usb: core: add a wrapper for the USB PHYs on the HCD") Suggested-by: Masahiro Yamada Signed-off-by: Martin Blumenstingl Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/core/phy.h b/drivers/usb/core/phy.h index 605555901d443..bbc9693830749 100644 --- a/drivers/usb/core/phy.h +++ b/drivers/usb/core/phy.h @@ -1,3 +1,4 @@ +struct device; struct usb_phy_roothub; struct usb_phy_roothub *usb_phy_roothub_alloc(struct device *dev);