diff options
author | Heiko Schocher <hs@denx.de> | 2015-10-22 06:19:20 +0200 |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2015-10-26 09:22:02 +0100 |
commit | 5219db8ae802210730b348a888474efc2f9bf0a4 (patch) | |
tree | 9ac4e8397615397621441df872b43b0c7b32be51 /drivers/usb/dwc3 | |
parent | 677f970bc62a661690b3431543d5a5d5e682ba70 (diff) | |
download | u-boot-imx-5219db8ae802210730b348a888474efc2f9bf0a4.zip u-boot-imx-5219db8ae802210730b348a888474efc2f9bf0a4.tar.gz u-boot-imx-5219db8ae802210730b348a888474efc2f9bf0a4.tar.bz2 |
linux, compat: add missing definitions for ubi
add missing definitions for the ubi/ubifs sync
with linux 4.2, also change "#define kfree ..."
into a static inline, so prevent ubi compile error:
CC drivers/mtd/ubi/fastmap.o
drivers/mtd/ubi/fastmap.c: In function 'scan_pool':
drivers/mtd/ubi/fastmap.c:475:3: error: called object 'free' is not a function
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/linux-compat.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/usb/dwc3/linux-compat.h b/drivers/usb/dwc3/linux-compat.h index b36f68f..6c9c279 100644 --- a/drivers/usb/dwc3/linux-compat.h +++ b/drivers/usb/dwc3/linux-compat.h @@ -30,9 +30,4 @@ static inline void *devm_kzalloc(struct device *dev, unsigned int size, { return kzalloc(size, flags); } - -static inline void *kmalloc_array(size_t n, size_t size, gfp_t flags) -{ - return kzalloc(n * size, flags); -} #endif |