mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 20:58:22 +00:00

As part of bringing the master branch back in to next, we need to allow for all of these changes to exist here. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
15 lines
308 B
C
15 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),
|
|
};
|