On Thu, Dec 17, 2009 at 04:20:02PM +0100, [email protected] 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 <[email protected]>
> Acked-by: Uwe Hermann <[email protected]>
> 
> 
> 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.

_______________________________________________
flashrom mailing list
[email protected]
http://www.flashrom.org/mailman/listinfo/flashrom

Reply via email to