blob: 82793765bea24d05937de623b789999244e11127 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/* 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
11#ifndef __DWC3_LINUX_COMPAT__
12#define __DWC3_LINUX_COMPAT__
13
14#define dev_WARN(dev, format, arg...) debug(format, ##arg)
15
16static inline size_t strlcat(char *dest, const char *src, size_t n)
17{
18 strcat(dest, src);
19 return strlen(dest) + strlen(src);
20}
21
22#endif