mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
18 lines
342 B
C
18 lines
342 B
C
|
// 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,
|
||
|
};
|