hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier:     GPL-2.0 */
/*
 * Copyright (C) 2023 Rockchip Electronics Co., Ltd
 */
 
#ifndef _PHY_ROCKCHIP_NANENG_COMBPHY_H
#define _PHY_ROCKCHIP_NANENG_COMBPHY_H
 
#if CONFIG_IS_ENABLED(PHY_ROCKCHIP_NANENG_COMBOPHY)
int rockchip_combphy_usb3_uboot_init(void);
#else
static inline int rockchip_combphy_usb3_uboot_init(void)
{
   return -ENOTSUPP;
}
#endif
 
#endif /* _PHY_ROCKCHIP_NANENG_COMBPHY_H */