object: rename deref to unref

This commit is contained in:
2026-02-08 12:36:32 +00:00
parent 0853cff56b
commit 5304e5be00
3 changed files with 3 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ struct object *object_ref(struct object *obj)
return obj;
}
void object_deref(struct object *obj)
void object_unref(struct object *obj)
{
unsigned long flags;
spin_lock_irqsave(&obj->ob_lock, &flags);