Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7582733 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Bartlomiej Zolnierkiewicz
Browse files

video: fbdev: make fb_var_screeninfo const



Make these const as they are not modified anywhere.

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent 8e75f7a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ static const struct fb_videomode unifb_modes[] = {
	  0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
};

static struct fb_var_screeninfo unifb_default = {
static const struct fb_var_screeninfo unifb_default = {
	.xres =		640,
	.yres =		480,
	.xres_virtual =	640,
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@

static struct fb_info fb_info;

static struct fb_var_screeninfo maxinefb_defined = {
static const struct fb_var_screeninfo maxinefb_defined = {
	.xres =		1024,
	.yres =		768,
	.xres_virtual =	1024,
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ struct aafb_par {
	struct bt431_regs __iomem *bt431;
};

static struct fb_var_screeninfo aafb_defined = {
static const struct fb_var_screeninfo aafb_defined = {
	.xres		= 1280,
	.yres		= 1024,
	.xres_virtual	= 2048,
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ struct pmagbafb_par {
};


static struct fb_var_screeninfo pmagbafb_defined = {
static const struct fb_var_screeninfo pmagbafb_defined = {
	.xres		= 1024,
	.yres		= 864,
	.xres_virtual	= 1024,
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ struct pmagbbfb_par {
};


static struct fb_var_screeninfo pmagbbfb_defined = {
static const struct fb_var_screeninfo pmagbbfb_defined = {
	.bits_per_pixel	= 8,
	.red.length	= 8,
	.green.length	= 8,
Loading