staging: xgifb: replace video_type with FB_TYPE_PACKED_PIXELS
Replace a global variable with a constant. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Reviewed-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e1521a166d
commit
de351ba690
@@ -132,9 +132,6 @@ MODULE_DEVICE_TABLE(pci, xgifb_pci_table);
|
|||||||
/* Fbcon variables */
|
/* Fbcon variables */
|
||||||
static struct fb_info *fb_info;
|
static struct fb_info *fb_info;
|
||||||
|
|
||||||
|
|
||||||
static int video_type = FB_TYPE_PACKED_PIXELS;
|
|
||||||
|
|
||||||
static struct fb_var_screeninfo default_var = {
|
static struct fb_var_screeninfo default_var = {
|
||||||
.xres = 0,
|
.xres = 0,
|
||||||
.yres = 0,
|
.yres = 0,
|
||||||
|
@@ -1487,7 +1487,7 @@ static int XGIfb_get_fix(struct fb_fix_screeninfo *fix, int con,
|
|||||||
|
|
||||||
fix->smem_len = xgi_video_info.video_size;
|
fix->smem_len = xgi_video_info.video_size;
|
||||||
|
|
||||||
fix->type = video_type;
|
fix->type = FB_TYPE_PACKED_PIXELS;
|
||||||
fix->type_aux = 0;
|
fix->type_aux = 0;
|
||||||
if (xgi_video_info.video_bpp == 8)
|
if (xgi_video_info.video_bpp == 8)
|
||||||
fix->visual = FB_VISUAL_PSEUDOCOLOR;
|
fix->visual = FB_VISUAL_PSEUDOCOLOR;
|
||||||
|
Reference in New Issue
Block a user