Lines Matching refs:map
54 struct regmap *map; in dm_test_syscon_by_phandle() local
60 map = syscon_regmap_lookup_by_phandle(dev, "first-syscon"); in dm_test_syscon_by_phandle()
61 ut_assert(map); in dm_test_syscon_by_phandle()
62 ut_assert(!IS_ERR(map)); in dm_test_syscon_by_phandle()
63 ut_asserteq(1, map->range_count); in dm_test_syscon_by_phandle()
67 map = syscon_regmap_lookup_by_phandle(dev, "second-sys-ctrl"); in dm_test_syscon_by_phandle()
68 ut_assert(map); in dm_test_syscon_by_phandle()
69 ut_assert(!IS_ERR(map)); in dm_test_syscon_by_phandle()
70 ut_asserteq(4, map->range_count); in dm_test_syscon_by_phandle()
74 map = syscon_regmap_lookup_by_phandle(dev, "third-syscon"); in dm_test_syscon_by_phandle()
75 ut_assert(map); in dm_test_syscon_by_phandle()
76 ut_assert(!IS_ERR(map)); in dm_test_syscon_by_phandle()
77 ut_asserteq(4, map->range_count); in dm_test_syscon_by_phandle()