xref: /OK3568_Linux_fs/u-boot/include/linux/usb/phy-rockchip-inno-usb3.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /* SPDX-License-Identifier:     GPL-2.0 */
2 /*
3  * Copyright (C) 2020 Rockchip Electronics Co., Ltd
4  */
5 
6 #ifndef _PHY_ROCKCHIP_INNO_USB3_H
7 #define _PHY_ROCKCHIP_INNO_USB3_H
8 
9 #if CONFIG_IS_ENABLED(PHY_ROCKCHIP_INNO_USB3)
10 int rockchip_u3phy_uboot_init(void);
11 #else
rockchip_u3phy_uboot_init(void)12 static inline int rockchip_u3phy_uboot_init(void)
13 {
14 	return -ENOTSUPP;
15 }
16 #endif
17 
18 #endif /* _PHY_ROCKCHIP_INNO_USB3_H */
19