xref: /rk3399_rockchip-uboot/include/linux/usb/phy-rockchip-naneng-combphy.h (revision 6cef3c7b7cc45a9c882fc64e5496a416c99313b8)
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(fdt_addr_t phy_addr);
11 #else
12 int rockchip_combphy_usb3_uboot_init(fdt_addr_t phy_addr)
13 {
14 	return -ENOTSUPP;
15 }
16 #endif
17 
18 #endif /* _PHY_ROCKCHIP_NANENG_COMBPHY_H */
19