1 /** 2 * linux-compat.h - DesignWare USB3 Linux Compatibiltiy Adapter Header 3 * 4 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com 5 * 6 * Authors: Kishon Vijay Abraham I <kishon@ti.com> 7 * 8 * SPDX-License-Identifier: GPL-2.0 9 * 10 */ 11 12 #ifndef __DWC3_LINUX_COMPAT__ 13 #define __DWC3_LINUX_COMPAT__ 14 15 #define pr_debug(format) debug(format) 16 #define WARN(val, format, arg...) debug(format, ##arg) 17 #define WARN_ON_ONCE(val) debug("Error %d\n", val) 18 19 #define BUILD_BUG_ON_NOT_POWER_OF_2(n) 20 21 static inline size_t strlcat(char *dest, const char *src, size_t n) 22 { 23 strcat(dest, src); 24 return strlen(dest) + strlen(src); 25 } 26 27 #endif 28