blob: f17a82217957271d6d3d88624ba72de0a8caf7a2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | // SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright 2022 Alexander Dahl <post@lespocky.de>
 */
#include <dm.h>
static const struct udevice_id sandbox_fpga_match[] = {
	{ .compatible = "sandbox,fpga" },
	{ /* sentinel */ }
};
U_BOOT_DRIVER(sandbox_fpga) = {
	.name	= "sandbox_fpga",
	.id	= UCLASS_FPGA,
	.of_match = sandbox_fpga_match,
};
 |