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

Commit ef5ced4b authored by Dan Carpenter's avatar Dan Carpenter Committed by Ben Skeggs
Browse files

drm/nouveau: testing the wrong variable



memtimings is a valid pointer here, the intent was to test for
kcalloc() failure.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 12b6d9d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -239,7 +239,7 @@ nouveau_perf_init(struct drm_device *dev)
	if(version == 0x15) {
		memtimings->timing =
				kcalloc(entries, sizeof(*memtimings->timing), GFP_KERNEL);
		if(!memtimings) {
		if (!memtimings->timing) {
			NV_WARN(dev,"Could not allocate memtiming table\n");
			return;
		}