diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2013-06-05 05:50:43 -0400 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-06-18 04:20:22 -0400 |
commit | 0580ed363789c8fc9844df6904f471ca6e82fa07 (patch) | |
tree | 796d78f5dcf24eaf0b43aefa24beb9e4849c3164 /arch/arm/mach-at91/Kconfig | |
parent | 317ddd256b9c24b0d78fa8018f80f1e495481a10 (diff) |
ARM: at91: Fix link breakage when !CONFIG_PHYLIB
Fixes:
arch/arm/mach-at91/built-in.o: In function `ksz9021rn_phy_fixup':
:(.text+0x1174): undefined reference to `mdiobus_write'
:(.text+0x1188): undefined reference to `mdiobus_write'
:(.text+0x119c): undefined reference to `mdiobus_write'
:(.text+0x11b0): undefined reference to `mdiobus_write'
arch/arm/mach-at91/built-in.o: In function `sama5_dt_device_init':
:(.init.text+0x1e34): undefined reference to `phy_register_fixup_for_uid'
when CONFIG_PHYLIB is not selected.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/Kconfig')
-rw-r--r-- | arch/arm/mach-at91/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 02802386b894..699b71e7f7ec 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig | |||
@@ -163,6 +163,7 @@ config MACH_SAMA5_DT | |||
163 | bool "Atmel SAMA5 Evaluation Kits with device-tree support" | 163 | bool "Atmel SAMA5 Evaluation Kits with device-tree support" |
164 | depends on SOC_SAMA5 | 164 | depends on SOC_SAMA5 |
165 | select USE_OF | 165 | select USE_OF |
166 | select PHYLIB if NETDEVICES | ||
166 | help | 167 | help |
167 | Select this if you want to experiment device-tree with | 168 | Select this if you want to experiment device-tree with |
168 | an Atmel Evaluation Kit. | 169 | an Atmel Evaluation Kit. |