1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2023 Svyatoslav Ryhel <clamor95@gmail.com> 4 */ 5 6 #include <dm.h> 7 #include <dm/test.h> 8 #include <extcon.h> 9 #include <test/test.h> 10 #include <test/ut.h> 11 dm_test_extcon(struct unit_test_state * uts)12static int dm_test_extcon(struct unit_test_state *uts) 13 { 14 struct udevice *dev; 15 16 ut_assertok(uclass_get_device_by_name(UCLASS_EXTCON, "extcon", &dev)); 17 18 return 0; 19 } 20 21 DM_TEST(dm_test_extcon, UT_TESTF_SCAN_FDT); 22