Lines Matching +full:dts +full:- +full:node
1 // SPDX-License-Identifier: GPL-2.0+
16 if (!ops->get) in dm_bootcount_get()
17 return -ENOSYS; in dm_bootcount_get()
18 return ops->get(dev, bootcount); in dm_bootcount_get()
26 if (!ops->set) in dm_bootcount_set()
27 return -ENOSYS; in dm_bootcount_set()
28 return ops->set(dev, bootcount); in dm_bootcount_set()
35 ofnode node; in bootcount_store() local
36 const char *propname = "u-boot,bootcount-device"; in bootcount_store()
37 int ret = -ENODEV; in bootcount_store()
41 * setting '/chosen/u-boot,bootcount-device' in the DTS), try to use in bootcount_store()
44 node = ofnode_get_chosen_node(propname); in bootcount_store()
45 if (ofnode_valid(node)) in bootcount_store()
46 ret = uclass_get_device_by_ofnode(UCLASS_BOOTCOUNT, node, &dev); in bootcount_store()
48 /* If there was no user-selected device, use the first available one */ in bootcount_store()
62 ofnode node; in bootcount_load() local
63 const char *propname = "u-boot,bootcount-device"; in bootcount_load()
64 int ret = -ENODEV; in bootcount_load()
69 * setting '/chosen/u-boot,bootcount-device' in the DTS), try to use in bootcount_load()
72 node = ofnode_get_chosen_node(propname); in bootcount_load()
73 if (ofnode_valid(node)) in bootcount_load()
74 ret = uclass_get_device_by_ofnode(UCLASS_BOOTCOUNT, node, &dev); in bootcount_load()
76 /* If there was no user-selected device, use the first available one */ in bootcount_load()