diff options
Diffstat (limited to 'drivers/fpga/fpga-uclass.c')
-rw-r--r-- | drivers/fpga/fpga-uclass.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/fpga/fpga-uclass.c b/drivers/fpga/fpga-uclass.c new file mode 100644 index 00000000000..4278ec28e56 --- /dev/null +++ b/drivers/fpga/fpga-uclass.c @@ -0,0 +1,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, +}; |