Skip to content

Commit 6ff005c

Browse files
daveprueopenedev
authored andcommitted
sunxi: Fix CONFIG_SUNXI_GMAC references
SUNXI_GMAC was still used to configure the code where as the same has been renamed and moved to Kconfig in below commit "sunxi: Move SUNXI_GMAC to Kconfig" (sha1: 4d43d06) Signed-off-by: Dave Prue <[email protected]> Reviewed-by: Simon Glass <[email protected]> Reviewed-by: Jagan Teki <[email protected]> Reviewed-by: Mark Kettenis <[email protected]> Tested-by: Mark Kettenis <[email protected]> [Tweek commit message, config_whitelist.txt, build-whitelist.sh] Signed-off-by: Jagan Teki <[email protected]>
1 parent 8a647fc commit 6ff005c

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

arch/arm/include/asm/arch-sunxi/sys_proto.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void sdelay(unsigned long);
2424
void return_to_fel(uint32_t lr, uint32_t sp);
2525

2626
/* Board / SoC level designware gmac init */
27-
#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUNXI_GMAC
27+
#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUN7I_GMAC
2828
void eth_init_board(void);
2929
#else
3030
static inline void eth_init_board(void) {}

board/sunxi/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# SPDX-License-Identifier: GPL-2.0+
1010
#
1111
obj-y += board.o
12-
obj-$(CONFIG_SUNXI_GMAC) += gmac.o
12+
obj-$(CONFIG_SUN7I_GMAC) += gmac.o
1313
ifndef CONFIG_SPL_BUILD
1414
obj-$(CONFIG_SUNXI_AHCI) += ahci.o
1515
endif

include/configs/sunxi-common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ extern int soft_i2c_gpio_scl;
294294
#define CONFIG_MII /* MII PHY management */
295295
#endif
296296

297-
#ifdef CONFIG_SUNXI_GMAC
297+
#ifdef CONFIG_SUN7I_GMAC
298298
#define CONFIG_PHY_ADDR 1
299299
#define CONFIG_MII /* MII PHY management */
300300
#define CONFIG_PHY_REALTEK

scripts/build-whitelist.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ export LC_ALL=C LC_COLLATE=C
1313
# There are two independent greps. The first pulls out the component parts
1414
# of CONFIG_SYS_EXTRA_OPTIONS. An example is:
1515
#
16-
# SUNXI_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
16+
# SUN7I_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
1717
#
1818
# We want this to produce:
19-
# CONFIG_SUNXI_GMAC
19+
# CONFIG_SUN7I_GMAC
2020
# CONFIG_AHCI
2121
# CONFIG_SATAPWR
2222
#

scripts/config_whitelist.txt

-1
Original file line numberDiff line numberDiff line change
@@ -2307,7 +2307,6 @@ CONFIG_STV0991_HZ_CLOCK
23072307
CONFIG_ST_SMI
23082308
CONFIG_SUNXI_AHCI
23092309
CONFIG_SUNXI_EMAC
2310-
CONFIG_SUNXI_GMAC
23112310
CONFIG_SUNXI_GPIO
23122311
CONFIG_SUNXI_MAX_FB_SIZE
23132312
CONFIG_SUNXI_USB_PHYS

0 commit comments

Comments
 (0)