diff options
Diffstat (limited to 'drivers/video/cirrusfb.c')
| -rw-r--r-- | drivers/video/cirrusfb.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/video/cirrusfb.c b/drivers/video/cirrusfb.c index d42e385f091..4c2bf923418 100644 --- a/drivers/video/cirrusfb.c +++ b/drivers/video/cirrusfb.c @@ -567,9 +567,7 @@ static int cirrusfb_check_var(struct fb_var_screeninfo *var,  	default:  		dev_dbg(info->device,  			"Unsupported bpp size: %d\n", var->bits_per_pixel); -		assert(false); -		/* should never occur */ -		break; +		return -EINVAL;  	}  	if (var->xres_virtual < var->xres)  |