rk3568_ubuntu_r60_v1.3.2/u-boot/include/linux/usb/phy-rockchip-inno-usb3.h

19 lines
381 B
C
Raw Normal View History

2023-11-03 14:12:44 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2020 Rockchip Electronics Co., Ltd
*/
#ifndef _PHY_ROCKCHIP_INNO_USB3_H
#define _PHY_ROCKCHIP_INNO_USB3_H
#if CONFIG_IS_ENABLED(PHY_ROCKCHIP_INNO_USB3)
int rockchip_u3phy_uboot_init(void);
#else
static inline int rockchip_u3phy_uboot_init(void)
{
return -ENOTSUPP;
}
#endif
#endif /* _PHY_ROCKCHIP_INNO_USB3_H */