Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89ed10a5 authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/nouveau/core: fix static checker warning



object->engine cannot be NULL, it's either valid, or an error pointer.

This particular condition shouldn't actually be possible, but just in
case, we'll keep it.

Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 80a92865
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -295,7 +295,7 @@ nvkm_object_ctor(const struct nvkm_object_func *func,
	INIT_LIST_HEAD(&object->head);
	INIT_LIST_HEAD(&object->head);
	INIT_LIST_HEAD(&object->tree);
	INIT_LIST_HEAD(&object->tree);
	RB_CLEAR_NODE(&object->node);
	RB_CLEAR_NODE(&object->node);
	WARN_ON(oclass->engine && !object->engine);
	WARN_ON(IS_ERR(object->engine));
}
}


int
int