linux-compat.h 510 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /**
  3. * linux-compat.h - DesignWare USB3 Linux Compatibiltiy Adapter Header
  4. *
  5. * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
  6. *
  7. * Authors: Kishon Vijay Abraham I <kishon@ti.com>
  8. *
  9. */
  10. #ifndef __DWC3_LINUX_COMPAT__
  11. #define __DWC3_LINUX_COMPAT__
  12. #define dev_WARN(dev, format, arg...) debug(format, ##arg)
  13. static inline size_t strlcat(char *dest, const char *src, size_t n)
  14. {
  15. strcat(dest, src);
  16. return strlen(dest) + strlen(src);
  17. }
  18. #endif