extcon.h 303 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2023 Svyatoslav Ryhel <clamor95@gmail.com>
  4. */
  5. #ifndef __EXTCON_H
  6. #define __EXTCON_H
  7. struct udevice;
  8. /**
  9. * struct extcon_uc_plat - Platform data the uclass stores about each device
  10. *
  11. * To be filled
  12. */
  13. struct extcon_uc_plat {
  14. };
  15. #endif