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