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

Commit 13a05eaa authored by Javier M. Mellid's avatar Javier M. Mellid Committed by Greg Kroah-Hartman
Browse files

staging: sm7xxfb: cleanup on smtc_alloc_fb_info



This patch improves coding style on smtc_alloc_fb_info.

Tested with SM712.

Signed-off-by: default avatarJavier M. Mellid <jmunhoz@igalia.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cd4653ae
Loading
Loading
Loading
Loading
+18 −18
Original line number Diff line number Diff line
@@ -673,7 +673,7 @@ static struct fb_ops smtcfb_ops = {
};

/*
 * Alloc struct smtcfb_info and assign the default value
 * alloc struct smtcfb_info and assign the default value
 */
static struct smtcfb_info *smtc_alloc_fb_info(struct pci_dev *pdev, char *name)
{
@@ -686,12 +686,12 @@ static struct smtcfb_info *smtc_alloc_fb_info(struct pci_dev *pdev, char *name)

	sfb->pdev = pdev;

	/*** Init sfb->fb with default value ***/
	/* init sfb->fb with default value */

	sfb->fb.flags = FBINFO_FLAG_DEFAULT;
	sfb->fb.fbops = &smtcfb_ops;
	sfb->fb.var = smtcfb_var;
	sfb->fb.fix = smtcfb_fix;

	sfb->fb.fix = smtcfb_fix;
	strcpy(sfb->fb.fix.id, name);

	sfb->fb.fix.type        = FB_TYPE_PACKED_PIXELS;
@@ -701,11 +701,11 @@ static struct smtcfb_info *smtc_alloc_fb_info(struct pci_dev *pdev, char *name)
	sfb->fb.fix.ywrapstep   = 0;
	sfb->fb.fix.accel       = FB_ACCEL_SMI_LYNX;

	sfb->fb.var             = smtcfb_var;
	sfb->fb.var.nonstd      = 0;
	sfb->fb.var.activate    = FB_ACTIVATE_NOW;
	sfb->fb.var.height      = -1;
	sfb->fb.var.width       = -1;
	/* text mode acceleration */
	sfb->fb.var.accel_flags = FB_ACCELF_TEXT;
	sfb->fb.var.vmode       = FB_VMODE_NONINTERLACED;