diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2010-09-30 09:14:40 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2010-10-20 02:27:18 -0500 | 
| commit | f8c42495e08b270dbeb47c5dd79e9564fa4b5ec2 (patch) | |
| tree | 67c5aaff5243647c00531552d70753a2fac5fbfb /drivers/qe/uec.h | |
| parent | 11c8dd36edcc82564a19dbd0103302df66d66db0 (diff) | |
| download | olio-uboot-2014.01-f8c42495e08b270dbeb47c5dd79e9564fa4b5ec2.tar.xz olio-uboot-2014.01-f8c42495e08b270dbeb47c5dd79e9564fa4b5ec2.zip | |
powerpc/fsl: Introduce common enum for PHY types
Have a common enum for phy types that we use in the UCC driver.  We will
also use this enum for dealing with phy connection fixup in the device
tree.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'drivers/qe/uec.h')
| -rw-r--r-- | drivers/qe/uec.h | 20 | 
1 files changed, 3 insertions, 17 deletions
| diff --git a/drivers/qe/uec.h b/drivers/qe/uec.h index 2a9e2dcd9..94eb9a26d 100644 --- a/drivers/qe/uec.h +++ b/drivers/qe/uec.h @@ -1,5 +1,5 @@  /* - * Copyright (C) 2006-2009 Freescale Semiconductor, Inc. + * Copyright (C) 2006-2010 Freescale Semiconductor, Inc.   *   * Dave Liu <daveliu@freescale.com>   * based on source code of Shlomi Gridish @@ -25,6 +25,7 @@  #include "qe.h"  #include "uccf.h" +#include <asm/fsl_enet.h>  #define MAX_TX_THREADS				8  #define MAX_RX_THREADS				8 @@ -660,21 +661,6 @@ typedef enum uec_num_of_threads {  	UEC_NUM_OF_THREADS_8  = 0x4   /* 8 */  } uec_num_of_threads_e; -/* UEC ethernet interface type -*/ -typedef enum enet_interface_type { -	MII, -	RMII, -	RGMII, -	GMII, -	RGMII_ID, -	RGMII_RXID, -	RGMII_TXID, -	TBI, -	RTBI, -	SGMII -} enet_interface_type_e; -  /* UEC initialization info struct  */  #define STD_UEC_INFO(num) \ @@ -705,7 +691,7 @@ typedef struct uec_info {  	u16				rx_bd_ring_len;  	u16				tx_bd_ring_len;  	u8				phy_address; -	enet_interface_type_e		enet_interface_type; +	enum fsl_phy_enet_if		enet_interface_type;  	int				speed;  } uec_info_t; |