mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
So far, we have up to 4 different names for the same thing (ignoring capitalization)
CONFIG_FT2232SPI (makefile config option) FT2232_SPI_SUPPORT (#define) ft2232spi (programmer name) ft2232_spi.c (programmer file) Use CONFIG_* with underscores for makefile config options and #defines and kill the useless _SUPPORT idiom. Use lowercase names with underscores for programmer names and programmer files. With this, you can run "grep -i ft2232_spi" and find everything related to the ft2232_spi driver. Same applies to all other programmers. Corresponding to flashrom svn r1023. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
4
layout.c
4
layout.c
@ -24,7 +24,7 @@
|
||||
#include <ctype.h>
|
||||
#include "flash.h"
|
||||
|
||||
#if INTERNAL_SUPPORT == 1
|
||||
#if CONFIG_INTERNAL == 1
|
||||
char *mainboard_vendor = NULL;
|
||||
char *mainboard_part = NULL;
|
||||
#endif
|
||||
@ -41,7 +41,7 @@ typedef struct {
|
||||
|
||||
romlayout_t rom_entries[MAX_ROMLAYOUT];
|
||||
|
||||
#if INTERNAL_SUPPORT == 1 /* FIXME: Move the whole block to cbtable.c? */
|
||||
#if CONFIG_INTERNAL == 1 /* FIXME: Move the whole block to cbtable.c? */
|
||||
static char *def_name = "DEFAULT";
|
||||
|
||||
int show_id(uint8_t *bios, int size, int force)
|
||||
|
Reference in New Issue
Block a user