blob: 35850f91a36dd47159c7f4b399cf9725a7c90103 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Kishon Vijay Abraham Ie23c9202015-02-23 18:39:57 +05302/**
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 *
Kishon Vijay Abraham Ie23c9202015-02-23 18:39:57 +05309 */
10
11#ifndef __DWC3_LINUX_COMPAT__
12#define __DWC3_LINUX_COMPAT__
13
Kishon Vijay Abraham Ie23c9202015-02-23 18:39:57 +053014#define WARN(val, format, arg...) debug(format, ##arg)
Kishon Vijay Abraham I9c38ca42015-02-23 18:40:00 +053015#define dev_WARN(dev, format, arg...) debug(format, ##arg)
Kishon Vijay Abraham Ie23c9202015-02-23 18:39:57 +053016
Kishon Vijay Abraham Ie23c9202015-02-23 18:39:57 +053017static inline size_t strlcat(char *dest, const char *src, size_t n)
18{
19 strcat(dest, src);
20 return strlen(dest) + strlen(src);
21}
22
Kishon Vijay Abraham Ie23c9202015-02-23 18:39:57 +053023#endif