Commit f2ff0c43 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Helge Deller
Browse files

fbdev: uvesafb: Simplify uvesafb_remove()



When the remove() function is called, we know that the probe() function has
successfully been executed. So 'info' is known to be not NULL.

Simplify the code accordingly.

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent a9437104
Loading
Loading
Loading
Loading
+13 −15
Original line number Diff line number Diff line
@@ -1777,8 +1777,6 @@ static int uvesafb_probe(struct platform_device *dev)
static int uvesafb_remove(struct platform_device *dev)
{
	struct fb_info *info = platform_get_drvdata(dev);

	if (info) {
	struct uvesafb_par *par = info->par;

	sysfs_remove_group(&dev->dev.kobj, &uvesafb_dev_attgrp);
@@ -1795,7 +1793,7 @@ static int uvesafb_remove(struct platform_device *dev)
	kfree(par->vbe_state_saved);

	framebuffer_release(info);
	}

	return 0;
}