blob: 4278ec28e5642be123743ea128eb586d61dc3d30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2022 Alexander Dahl <post@lespocky.de>
*/
#include <dm.h>
UCLASS_DRIVER(fpga) = {
.name = "fpga",
.id = UCLASS_FPGA,
};
|