On Thu, Dec 17, 2009 at 04:20:02PM +0100, svn(a)flashrom.org wrote:
> - Set board-specific max decode size for Elitegroup K7VTA3.
> - Set board-specific max decode size for Shuttle AK38N.
>
> Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006(a)gmx.net>
> Acked-by: Uwe Hermann <uwe(a)hermann-uwe.de>
>
>
> Modified: trunk/board_enable.c
> ===================================================================
> --- trunk/board_enable.c 2009-12-17 04:22:40 UTC (rev 805)
> +++ trunk/board_enable.c 2009-12-17 15:20:01 UTC (rev 806)
> @@ -987,16 +987,24 @@
> }
>
> /**
> - * Suited for:
> - * - Shuttle AK38N: VIA KT333CF + VIA VT8235 + ITE IT8705F
> - * - Elitegroup K7VTA3: VIA Apollo KT266/A/333 + VIA VT8235 + ITE IT8705F
> + * Suited for: Elitegroup K7VTA3: VIA Apollo KT266/A/333 + VIA VT8235 + ITE IT8705F
> */
> -static int it8705f_write_enable_2e(const char *name)
> +static int elitegroup_k7vta3(const char *name)
> {
> + max_rom_decode.parallel = 256 * 1024;
> return it8705f_write_enable(0x2e, name);
> }
>
> /**
> + * Suited for: Shuttle AK38N: VIA KT333CF + VIA VT8235 + ITE IT8705F
> + */
> +static int shuttle_ak38n(const char *name)
> +{
> + max_rom_decode.parallel = 256 * 1024;
> + return it8705f_write_enable(0x2e, name);
> +}
> +
> +/**
What happened here, and why do we require two different entries here?
Luc Verhaegen.