From 7273a5307aa00de4ef14e90c82e0cbc02b9f3622 Mon Sep 17 00:00:00 2001 From: Aleksandr Rybalko Date: Thu, 8 May 2014 13:38:29 +0000 Subject: [PATCH] No need to assign fields required and checked on probe. Sponsored by: The FreeBSD Foundation --- sys/dev/vt/hw/fb/vt_early_fb.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sys/dev/vt/hw/fb/vt_early_fb.c b/sys/dev/vt/hw/fb/vt_early_fb.c index 8ca23380b69..64b2122f3ee 100644 --- a/sys/dev/vt/hw/fb/vt_early_fb.c +++ b/sys/dev/vt/hw/fb/vt_early_fb.c @@ -291,13 +291,6 @@ vt_efb_init(struct vt_device *vd) /* Get pixel storage size. */ info->fb_bpp = info->fb_stride / info->fb_width * 8; - /* - * Early FB driver work with static window buffer 80x25, so reduce - * size to 640x480. - */ - info->fb_width = VT_FB_DEFAULT_WIDTH; - info->fb_height = VT_FB_DEFAULT_HEIGHT; - #ifdef FDT vt_efb_initialize(info, node); #else