mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
11 lines
225 B
C
11 lines
225 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (C) 2020, STMicroelectronics
|
||
|
*/
|
||
|
|
||
|
#ifdef CONFIG_TYPEC_STUSB160X
|
||
|
int stusb160x_cable_connected(void);
|
||
|
#else
|
||
|
int stusb160x_cable_connected(void) { return -ENODEV; }
|
||
|
#endif
|