dm: core: Introduce xxx_translate_dma_address()
[oweals/u-boot.git] / test / dm / cache.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2019 Intel Corporation <www.intel.com>
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <dm/test.h>
9
10 static int dm_test_reset(struct unit_test_state *uts)
11 {
12         struct udevice *dev_cache;
13         struct cache_info;
14
15         ut_assertok(uclass_get_device(UCLASS_CACHE, 0, &dev_cache));
16         ut_assertok(cache_get_info(dev, &info));
17
18         return 0;
19 }
20 DM_TEST(dm_test_reset, DM_TESTF_SCAN_FDT);