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)12static inline int rockchip_u3phy_uboot_init(void) 13 { 14 return -ENOTSUPP; 15 } 16 #endif 17 18 #endif /* _PHY_ROCKCHIP_INNO_USB3_H */ 19