UPSTREAM: 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. Change-Id: I33e25cbd18245d689d4599ef2a1e46603128c633 Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Frank Wang <frank.wang@rock-chips.com> (cherry picked from commit 0ad3f771b69c0db837f40f6ffd5d41915fc07095)
This commit is contained in:
parent
1488d4b92d
commit
b6985a2105
|
|
@ -20,6 +20,7 @@
|
|||
#include <dwc3-uboot.h>
|
||||
#include <asm/dma-mapping.h>
|
||||
#include <linux/ioport.h>
|
||||
#include <dm.h>
|
||||
|
||||
#include <linux/usb/ch9.h>
|
||||
#include <linux/usb/gadget.h>
|
||||
|
|
@ -114,7 +115,8 @@ static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc,
|
|||
{
|
||||
struct dwc3_event_buffer *evt;
|
||||
|
||||
evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL);
|
||||
evt = devm_kzalloc((struct udevice *)dwc->dev, sizeof(*evt),
|
||||
GFP_KERNEL);
|
||||
if (!evt)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
|
|
@ -634,7 +636,8 @@ int dwc3_uboot_init(struct dwc3_device *dwc3_dev)
|
|||
const void *blob = gd->fdt_blob;
|
||||
int node;
|
||||
|
||||
mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
|
||||
mem = devm_kzalloc((struct udevice *)dev,
|
||||
sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL);
|
||||
if (!mem)
|
||||
return -ENOMEM;
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
#include <common.h>
|
||||
#include <malloc.h>
|
||||
#include <asm/io.h>
|
||||
#include <dm.h>
|
||||
#include <dwc3-omap-uboot.h>
|
||||
#include <linux/usb/dwc3-omap.h>
|
||||
#include <linux/ioport.h>
|
||||
|
|
@ -377,7 +378,7 @@ int dwc3_omap_uboot_init(struct dwc3_omap_device *omap_dev)
|
|||
struct device *dev = NULL;
|
||||
struct dwc3_omap *omap;
|
||||
|
||||
omap = devm_kzalloc(dev, sizeof(*omap), GFP_KERNEL);
|
||||
omap = devm_kzalloc((struct udevice *)dev, sizeof(*omap), GFP_KERNEL);
|
||||
if (!omap)
|
||||
return -ENOMEM;
|
||||
|
||||
|
|
|
|||
|
|
@ -21,9 +21,4 @@ static inline size_t strlcat(char *dest, const char *src, size_t n)
|
|||
return strlen(dest) + strlen(src);
|
||||
}
|
||||
|
||||
static inline void *devm_kzalloc(struct device *dev, unsigned int size,
|
||||
unsigned int flags)
|
||||
{
|
||||
return kzalloc(size, flags);
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
#include <linux/ioport.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/arch/sys_proto.h>
|
||||
#include <dm.h>
|
||||
|
||||
#include "linux-compat.h"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue