mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
staging: vme: vme_user: Remove NULL check of list_entry()
list_entry() will never return a NULL pointer, thus remove the check. Signed-off-by: Yuesong Li <liyuesong@vivo.com> Link: https://lore.kernel.org/r/20240822025736.1208339-1-liyuesong@vivo.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f64a887f8f
commit
94f7f4b90d
|
|
@ -416,10 +416,6 @@ void vme_slave_free(struct vme_resource *resource)
|
|||
|
||||
slave_image = list_entry(resource->entry, struct vme_slave_resource,
|
||||
list);
|
||||
if (!slave_image) {
|
||||
dev_err(bridge->parent, "Can't find slave resource\n");
|
||||
return;
|
||||
}
|
||||
|
||||
/* Unlock image */
|
||||
mutex_lock(&slave_image->mtx);
|
||||
|
|
@ -794,10 +790,6 @@ void vme_master_free(struct vme_resource *resource)
|
|||
|
||||
master_image = list_entry(resource->entry, struct vme_master_resource,
|
||||
list);
|
||||
if (!master_image) {
|
||||
dev_err(bridge->parent, "Can't find master resource\n");
|
||||
return;
|
||||
}
|
||||
|
||||
/* Unlock image */
|
||||
spin_lock(&master_image->lock);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user