blob: 0cf7e37e987710b925ad95633b766bedc7422723 [file] [log] [blame]
Simon Glass507ab962021-12-04 08:56:31 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Test for EFI_MEDIA uclass
4 *
5 * Copyright 2021 Google LLC
6 */
7
Simon Glass507ab962021-12-04 08:56:31 -07008#include <dm.h>
9#include <asm/test.h>
10#include <dm/test.h>
11#include <test/test.h>
12#include <test/ut.h>
13
14/* Test that we can use the EFI_MEDIA uclass */
15static int dm_test_efi_media(struct unit_test_state *uts)
16{
17 struct udevice *dev;
18
19 ut_assertok(uclass_first_device_err(UCLASS_EFI_MEDIA, &dev));
20
21 return 0;
22}
Simon Glass1a92f832024-08-22 07:57:48 -060023DM_TEST(dm_test_efi_media, UTF_SCAN_PDATA | UTF_SCAN_FDT);