1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2023 Svyatoslav Ryhel <clamor95@gmail.com> 4 */ 5 6 #define LOG_CATEGORY UCLASS_EXTCON 7 8 #include <common.h> 9 #include <extcon.h> 10 #include <dm.h> 11 12 UCLASS_DRIVER(extcon) = { 13 .id = UCLASS_EXTCON, 14 .name = "extcon", 15 .per_device_plat_auto = sizeof(struct extcon_uc_plat), 16 }; 17