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 | |
Tom Rini | abb9a04 | 2024-05-18 20:20:43 -0600 | [diff] [blame] | 8 | #include <common.h> |
Svyatoslav Ryhel | 0852386 | 2023-04-25 10:57:20 +0300 | [diff] [blame] | 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 | }; |