cdd80bd4ee
Move the Tilera driver into drivers/net/ethernet/tile and make the necessary Kconfig and Makefile changes. Updated the Kconfig so that the options defualt to y if TILE kernel. CC: Chris Metcalf <cmetcalf@tilera.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
10 lines
212 B
Makefile
10 lines
212 B
Makefile
#
|
|
# Makefile for the TILE on-chip networking support.
|
|
#
|
|
|
|
obj-$(CONFIG_TILE_NET) += tile_net.o
|
|
ifdef CONFIG_TILEGX
|
|
tile_net-objs := tilegx.o mpipe.o iorpc_mpipe.o dma_queue.o
|
|
else
|
|
tile_net-objs := tilepro.o
|
|
endif
|