mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 10:14:23 +08:00
e3d62d7e8e
This change adds support for the tilegx network driver based on the GXIO IORPC support in the tilegx software stack, using the on-chip mPIPE packet processing engine. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
172 B
Makefile
11 lines
172 B
Makefile
#
|
|
# Makefile for the TILE on-chip networking support.
|
|
#
|
|
|
|
obj-$(CONFIG_TILE_NET) += tile_net.o
|
|
ifdef CONFIG_TILEGX
|
|
tile_net-y := tilegx.o
|
|
else
|
|
tile_net-y := tilepro.o
|
|
endif
|