forked from mirrors/linux
		
	net: phy: dp83848: Support ethernet pause frames
According to the documentation, the PHYs supported by this driver can also support pause frames. Announce this to be so. Tested with a TI83822I. Acked-by: Andrew F. Davis <afd@ti.com> Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									adc176c547
								
							
						
					
					
						commit
						c7a61319ad
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
					@ -88,7 +88,9 @@ MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
 | 
				
			||||||
		.phy_id		= _id,				\
 | 
							.phy_id		= _id,				\
 | 
				
			||||||
		.phy_id_mask	= 0xfffffff0,			\
 | 
							.phy_id_mask	= 0xfffffff0,			\
 | 
				
			||||||
		.name		= _name,			\
 | 
							.name		= _name,			\
 | 
				
			||||||
		.features	= PHY_BASIC_FEATURES,		\
 | 
							.features	= (PHY_BASIC_FEATURES |		\
 | 
				
			||||||
 | 
									   SUPPORTED_Pause |		\
 | 
				
			||||||
 | 
									   SUPPORTED_Asym_Pause),	\
 | 
				
			||||||
		.flags		= PHY_HAS_INTERRUPT,		\
 | 
							.flags		= PHY_HAS_INTERRUPT,		\
 | 
				
			||||||
								\
 | 
													\
 | 
				
			||||||
		.soft_reset	= genphy_soft_reset,		\
 | 
							.soft_reset	= genphy_soft_reset,		\
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue