xref: /rk3399_rockchip-uboot/include/linux/usb/phy-rockchip-naneng-combphy.h (revision 5395ac06d271209f5904a9da4392a3d8dad7597e)
1 /* SPDX-License-Identifier:     GPL-2.0 */
2 /*
3  * Copyright (C) 2023 Rockchip Electronics Co., Ltd
4  */
5 
6 #ifndef _PHY_ROCKCHIP_NANENG_COMBPHY_H
7 #define _PHY_ROCKCHIP_NANENG_COMBPHY_H
8 
9 #if CONFIG_IS_ENABLED(PHY_ROCKCHIP_NANENG_COMBOPHY)
10 int rockchip_combphy_usb3_uboot_init(void);
11 #else
12 static inline int rockchip_combphy_usb3_uboot_init(void)
13 {
14 	return -ENOTSUPP;
15 }
16 #endif
17 
18 #endif /* _PHY_ROCKCHIP_NANENG_COMBPHY_H */
19