mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-07 10:48:54 +00:00
17 lines
328 B
C
17 lines
328 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* Copyright (C) 2023 Svyatoslav Ryhel <clamor95@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#define LOG_CATEGORY UCLASS_EXTCON
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <extcon.h>
|
||
|
#include <dm.h>
|
||
|
|
||
|
UCLASS_DRIVER(extcon) = {
|
||
|
.id = UCLASS_EXTCON,
|
||
|
.name = "extcon",
|
||
|
.per_device_plat_auto = sizeof(struct extcon_uc_plat),
|
||
|
};
|