1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Test for EFI_MEDIA uclass 4 * 5 * Copyright 2021 Google LLC 6 */ 7 8 #include <common.h> 9 #include <dm.h> 10 #include <asm/test.h> 11 #include <dm/test.h> 12 #include <test/test.h> 13 #include <test/ut.h> 14 15 /* Test that we can use the EFI_MEDIA uclass */ dm_test_efi_media(struct unit_test_state * uts)16static int dm_test_efi_media(struct unit_test_state *uts) 17 { 18 struct udevice *dev; 19 20 ut_assertok(uclass_first_device_err(UCLASS_EFI_MEDIA, &dev)); 21 22 return 0; 23 } 24 DM_TEST(dm_test_efi_media, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT); 25