mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 14:30:50 +00:00 
			
		
		
		
	 2e16a77e1e
			
		
	
	
		2e16a77e1e
		
	
	
	
	
		
			
			Add support for the Marvell 88E6060 switch chip. This chip only supports the Header and Trailer tagging formats, and we use it in Trailer mode since that mode is slightly easier to handle than Header mode. Signed-off-by: Lennert Buytenhek <buytenh@marvell.com> Tested-by: Byron Bradley <byron.bbradley@gmail.com> Tested-by: Tim Ellis <tim.ellis@mac.com> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			14 lines
		
	
	
		
			426 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			426 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # tagging formats
 | |
| obj-$(CONFIG_NET_DSA_TAG_DSA) += tag_dsa.o
 | |
| obj-$(CONFIG_NET_DSA_TAG_EDSA) += tag_edsa.o
 | |
| obj-$(CONFIG_NET_DSA_TAG_TRAILER) += tag_trailer.o
 | |
| 
 | |
| # switch drivers
 | |
| obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx.o
 | |
| obj-$(CONFIG_NET_DSA_MV88E6060) += mv88e6060.o
 | |
| obj-$(CONFIG_NET_DSA_MV88E6123_61_65) += mv88e6123_61_65.o
 | |
| obj-$(CONFIG_NET_DSA_MV88E6131) += mv88e6131.o
 | |
| 
 | |
| # the core
 | |
| obj-$(CONFIG_NET_DSA) += dsa.o slave.o
 |