]> Git Repo - u-boot.git/blob - test/dm/fpga.c
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
[u-boot.git] / test / dm / fpga.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2022 Alexander Dahl <[email protected]>
4  */
5
6 #include <dm.h>
7 #include <dm/test.h>
8 #include <test/test.h>
9 #include <test/ut.h>
10
11 static int dm_test_fpga(struct unit_test_state *uts)
12 {
13         struct udevice *dev;
14
15         ut_assertok(uclass_first_device_err(UCLASS_FPGA, &dev));
16
17         return 0;
18 }
19 DM_TEST(dm_test_fpga, UTF_SCAN_FDT);
This page took 0.030532 seconds and 4 git commands to generate.