diff options
author | Marek Vasut <marex@denx.de> | 2015-12-04 01:36:36 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-12-17 21:54:38 +0100 |
commit | 2c12ff039ca6e36c8c2025befcda3d91fbf47dcd (patch) | |
tree | eae91757d005531261f64a3141c9631c328d04a6 /drivers/usb/gadget/bcm_udc_otg_phy.c | |
parent | 014728133a0867440d570784ced76a413f46d824 (diff) |
usb: s3c-otg: Split private bits from s3c_udc.h
Most of the functions are local to the s3c_udc driver, remove them
from the s3c_udc.h header to stop those bits from propagating all
over the place. Instead, move all the private stuff into new private
s3c_udc_otg_priv.h header.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/usb/gadget/bcm_udc_otg_phy.c')
-rw-r--r-- | drivers/usb/gadget/bcm_udc_otg_phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/bcm_udc_otg_phy.c b/drivers/usb/gadget/bcm_udc_otg_phy.c index 936247e94af..c58388c639e 100644 --- a/drivers/usb/gadget/bcm_udc_otg_phy.c +++ b/drivers/usb/gadget/bcm_udc_otg_phy.c @@ -9,7 +9,7 @@ #include <asm/io.h> #include <asm/arch/sysmap.h> -#include <usb/s3c_udc.h> +#include "s3c_udc_otg_priv.h" #include "bcm_udc_otg.h" void otg_phy_init(struct dwc2_udc *dev) |