summaryrefslogtreecommitdiff
path: root/drivers/core/uclass.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-12-19 20:40:09 +0300
committerSimon Glass <sjg@chromium.org>2021-01-05 22:24:41 +0300
commit2462139fdd4f1f5eb50427e287a802b9c9eef097 (patch)
tree894eea47a05bffc74ee70162ebe0eb065540de68 /drivers/core/uclass.c
parent82021e31a71ae51bea1226e58727dd3163a26895 (diff)
downloadu-boot-2462139fdd4f1f5eb50427e287a802b9c9eef097.tar.xz
dm: core: Rename sqq to seq_
Now that the sequence-numbering migration is complete, rename this member back to seq_, adding an underscore to indicate it is internal to driver model. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/core/uclass.c')
-rw-r--r--drivers/core/uclass.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/core/uclass.c b/drivers/core/uclass.c
index f60bc9a850..e773e34833 100644
--- a/drivers/core/uclass.c
+++ b/drivers/core/uclass.c
@@ -297,8 +297,8 @@ int uclass_find_next_free_seq(struct uclass *uc)
/* Avoid conflict with existing devices */
list_for_each_entry(dev, &uc->dev_head, uclass_node) {
- if (dev->sqq > max)
- max = dev->sqq;
+ if (dev->seq_ > max)
+ max = dev->seq_;
}
/*
* At this point, max will be -1 if there are no existing aliases or
@@ -323,8 +323,8 @@ int uclass_find_device_by_seq(enum uclass_id id, int seq, struct udevice **devp)
return ret;
uclass_foreach_dev(dev, uc) {
- log_debug(" - %d '%s'\n", dev->sqq, dev->name);
- if (dev->sqq == seq) {
+ log_debug(" - %d '%s'\n", dev->seq_, dev->name);
+ if (dev->seq_ == seq) {
*devp = dev;
log_debug(" - found\n");
return 0;