mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
12 lines
178 B
C
12 lines
178 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* Copyright 2022 Alexander Dahl <post@lespocky.de>
|
||
|
*/
|
||
|
|
||
|
#include <dm.h>
|
||
|
|
||
|
UCLASS_DRIVER(fpga) = {
|
||
|
.name = "fpga",
|
||
|
.id = UCLASS_FPGA,
|
||
|
};
|