stusb160x.h 225 B

12345678910
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2020, STMicroelectronics
  4. */
  5. #ifdef CONFIG_TYPEC_STUSB160X
  6. int stusb160x_cable_connected(void);
  7. #else
  8. int stusb160x_cable_connected(void) { return -ENODEV; }
  9. #endif