diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 05:35:59 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-17 19:11:32 (GMT) |
commit | fdd91faef9148fd5a52467a91f79934ee4e7f2bd (patch) | |
tree | 2ebdb053501a52aea0f5db4ad384827ea745a14e /drivers | |
parent | fc9ac3565a80d571def4f2eae4ad10c4ed90cbb2 (diff) | |
download | u-boot-fdd91faef9148fd5a52467a91f79934ee4e7f2bd.tar.xz |
drivers/net/npe: descend only when CONFIG_IXP4XX_NPE=y
CONFIG_IXP4XX_NPE is defined only for CPU ixp.
It is not necessary to filter by CPU ixp.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/npe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/npe/Makefile b/drivers/net/npe/Makefile index 7fa5ea6..e36c0bb 100644 --- a/drivers/net/npe/Makefile +++ b/drivers/net/npe/Makefile @@ -10,7 +10,7 @@ CFLAGS += $(LOCAL_CFLAGS) CPPFLAGS += $(LOCAL_CFLAGS) # needed for depend HOSTCFLAGS += $(LOCAL_CFLAGS) -obj-$(CONFIG_IXP4XX_NPE) := npe.o \ +obj-y := npe.o \ miiphy.o \ IxOsalBufferMgt.o \ IxOsalIoMem.o \ |