Dear Marek Vasut, In message <[email protected]> you wrote: > Signed-off-by: Marek Vasut <[email protected]> > --- > arch/arm/cpu/pxa/pxafb.c | 200 > +++++++++++++++++++++++----------------------- > 1 files changed, 100 insertions(+), 100 deletions(-) > > diff --git a/arch/arm/cpu/pxa/pxafb.c b/arch/arm/cpu/pxa/pxafb.c > index 0ee6a75..09ee5c6 100644 > --- a/arch/arm/cpu/pxa/pxafb.c > +++ b/arch/arm/cpu/pxa/pxafb.c > @@ -56,26 +56,26 @@ > > /* 640x480x16 @ 61 Hz */ > vidinfo_t panel_info = { > - vl_col: 640, > - vl_row: 480, > - vl_width: 640, > - vl_height: 480, > - vl_clkp: CONFIG_SYS_HIGH, > - vl_oep: CONFIG_SYS_HIGH, > - vl_hsp: CONFIG_SYS_HIGH, > - vl_vsp: CONFIG_SYS_HIGH, > - vl_dp: CONFIG_SYS_HIGH, > - vl_bpix: LCD_BPP, > - vl_lbw: 0, > - vl_splt: 0, > - vl_clor: 0, > - vl_tft: 1, > - vl_hpw: 40, > - vl_blw: 56, > - vl_elw: 56, > - vl_vpw: 20, > - vl_bfw: 8, > - vl_efw: 8, > + .vl_col = 640, > + .vl_row = 480, > + .vl_width = 640, > + .vl_height = 480, > + .vl_clkp = CONFIG_SYS_HIGH, > + .vl_oep = CONFIG_SYS_HIGH, > + .vl_hsp = CONFIG_SYS_HIGH, > + .vl_vsp = CONFIG_SYS_HIGH, > + .vl_dp = CONFIG_SYS_HIGH, > + .vl_bpix = LCD_BPP, > + .vl_lbw = 0, > + .vl_splt = 0, > + .vl_clor = 0, > + .vl_tft = 1, > + .vl_hpw = 40, > + .vl_blw = 56, > + .vl_elw = 56, > + .vl_vpw = 20, > + .vl_bfw = 8, > + .vl_efw = 8,
In addition to the indentation, you also change the initializer style. Please note this in the commit message. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [email protected] Brain off-line, please wait. _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

