Commit 9cb13ba4 authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Tomi Valkeinen
Browse files

fbdev: geocode: remove unneeded NULL check



the check for info is not required as we are checking it immediately
after gxfb_init_fbinfo() and lxfb_init_fbinfo() and returnig -ENOMEM
if it is NULL.

Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 96699b40
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -444,10 +444,8 @@ static int gxfb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
		pci_release_region(pdev, 1);
	}

	if (info) {
	fb_dealloc_cmap(&info->cmap);
	framebuffer_release(info);
	}
	return ret;
}

+2 −4
Original line number Diff line number Diff line
@@ -577,10 +577,8 @@ static int lxfb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
		pci_release_region(pdev, 3);
	}

	if (info) {
	fb_dealloc_cmap(&info->cmap);
	framebuffer_release(info);
	}

	return ret;
}