Svyatoslav Ryhel | 0852386 | 2023-04-25 10:57:20 +0300 | [diff] [blame] | 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 | }; |