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