mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Move MPC512x_FEC driver to drivers/net
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
80b00af01b
commit
6b5049d056
4 changed files with 3 additions and 2 deletions
|
@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk
|
|||
LIB = $(obj)lib$(CPU).a
|
||||
|
||||
START = start.o
|
||||
COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o serial.o fec.o i2c.o iopin.o
|
||||
COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o serial.o i2c.o iopin.o
|
||||
|
||||
SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
||||
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
|
||||
|
|
|
@ -42,6 +42,7 @@ COBJS-$(CONFIG_DRIVER_LAN91C96) += lan91c96.o
|
|||
COBJS-$(CONFIG_MACB) += macb.o
|
||||
COBJS-$(CONFIG_MCFFEC) += mcffec.o
|
||||
COBJS-$(CONFIG_MPC5xxx_FEC) += mpc5xxx_fec.o
|
||||
COBJS-$(CONFIG_MPC512x_FEC) += mpc512x_fec.o
|
||||
COBJS-$(CONFIG_NATSEMI) += natsemi.o
|
||||
ifeq ($(CONFIG_DRIVER_NE2000),y)
|
||||
COBJS-y += ne2000.o
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <malloc.h>
|
||||
#include <net.h>
|
||||
#include <miiphy.h>
|
||||
#include "fec.h"
|
||||
#include "mpc512x_fec.h"
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
Loading…
Reference in a new issue