global: Migrate CONFIG_ET1100_BASE to CFG

Perform a simple rename of CONFIG_ET1100_BASE to CFG_ET1100_BASE

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2022-12-04 10:03:48 -05:00
parent ef2e1745da
commit b9abcb8c9f
2 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ int checkboard(void)
u_char hw_type; /* hardware type */
/* read the "Type" register of the ET1100 controller */
hw_type = readb(CONFIG_ET1100_BASE);
hw_type = readb(CFG_ET1100_BASE);
switch (hw_type) {
case 0x11:

View File

@ -60,6 +60,6 @@
#endif
/* hw-controller addresses */
#define CONFIG_ET1100_BASE 0x70000000
#define CFG_ET1100_BASE 0x70000000
#endif