Merge git://git.denx.de/u-boot-fsl-qoriq
[oweals/u-boot.git] / drivers / usb / dwc3 / linux-compat.h
index 58c47167bbf6987072adc00f68545eeb679aec25..5cbe377e3cd9a17fa6b15c57d4c8efd35b4d8f86 100644 (file)
@@ -5,9 +5,6 @@
  *
  * Authors: Kishon Vijay Abraham I <kishon@ti.com>
  *
- * Taken from Linux Kernel v3.16 (drivers/usb/dwc3/core.c) and ported
- * to uboot.
- *
  * SPDX-License-Identifier:    GPL-2.0
  *
  */
 #ifndef __DWC3_LINUX_COMPAT__
 #define __DWC3_LINUX_COMPAT__
 
-#define pr_debug(format)                debug(format)
 #define WARN(val, format, arg...)      debug(format, ##arg)
-#define WARN_ON_ONCE(val)              debug("Error %d\n", val)
-
-#define BUILD_BUG_ON_NOT_POWER_OF_2(n)
+#define dev_WARN(dev, format, arg...)  debug(format, ##arg)
 
 static inline size_t strlcat(char *dest, const char *src, size_t n)
 {
@@ -27,4 +21,9 @@ 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