blob: 6a4e22bfdc537d2b064bd5b6562b65a982c2879e [file] [log] [blame]
Svyatoslav Ryhel8b215e12023-04-25 10:57:21 +03001// 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
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
21DM_TEST(dm_test_extcon, UT_TESTF_SCAN_FDT);