drm: Remove duplicate "return" statement
Remove the duplicate "return" statement in drm_fb_helper_panic(). Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
909d6e0cb6
commit
55a01f6f68
|
@ -256,7 +256,6 @@ int drm_fb_helper_panic(struct notifier_block *n, unsigned long ununsed,
|
||||||
{
|
{
|
||||||
printk(KERN_ERR "panic occurred, switching back to text console\n");
|
printk(KERN_ERR "panic occurred, switching back to text console\n");
|
||||||
return drm_fb_helper_force_kernel_mode();
|
return drm_fb_helper_force_kernel_mode();
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_fb_helper_panic);
|
EXPORT_SYMBOL(drm_fb_helper_panic);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue