diff options
author | Mugunthan V N <mugunthanvnm@ti.com> | 2018-05-18 13:10:27 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-05-18 13:37:02 +0200 |
commit | 0ad3f771b69c0db837f40f6ffd5d41915fc07095 (patch) | |
tree | f196f281fedfc2c9320500d7c1e543bc2f385524 /drivers/usb/dwc3/ti_usb_phy.c | |
parent | d067624c47bf15b9b5b716ae8be510fa1fb615a2 (diff) | |
download | u-boot-0ad3f771b69c0db837f40f6ffd5d41915fc07095.tar.gz |
drivers: usb: dwc3: remove devm_zalloc from linux_compact
devm_zalloc() is already defined in dm/device.h header, so
devm_zalloc can be removed from linux_compact.h beader file.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'drivers/usb/dwc3/ti_usb_phy.c')
-rw-r--r-- | drivers/usb/dwc3/ti_usb_phy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/dwc3/ti_usb_phy.c b/drivers/usb/dwc3/ti_usb_phy.c index 925f56c97c..d168e868e3 100644 --- a/drivers/usb/dwc3/ti_usb_phy.c +++ b/drivers/usb/dwc3/ti_usb_phy.c @@ -23,6 +23,7 @@ #include <linux/ioport.h> #include <asm/io.h> #include <asm/arch/sys_proto.h> +#include <dm.h> #include "linux-compat.h" |