xref: /rk3399_rockchip-uboot/include/linux/usb/phy-rockchip-inno-usb3.h (revision 5d4a323c781a8f997dbac59d5a73c71fa1c7e0ad)
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
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