1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-01-17 21:30:06 +01:00
Files
u-boot-megous/drivers/extcon/extcon-uclass.c
Tom Rini ac01ed260b extcon: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-07 08:00:41 -06:00

16 lines
308 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2023 Svyatoslav Ryhel <clamor95@gmail.com>
*/
#define LOG_CATEGORY UCLASS_EXTCON
#include <extcon.h>
#include <dm.h>
UCLASS_DRIVER(extcon) = {
.id = UCLASS_EXTCON,
.name = "extcon",
.per_device_plat_auto = sizeof(struct extcon_uc_plat),
};