diff options
author | Mingkai Hu <Mingkai.hu@freescale.com> | 2011-01-27 12:52:45 +0800 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2011-04-20 13:44:46 -0500 |
commit | a32a6be28fbbec19b6581609844ca3ec313b9d81 (patch) | |
tree | 80637e3642d0ab72807fdc6674c4fce5a6406159 /include/tsec.h | |
parent | 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba (diff) |
tsec: use IO accessors for IO accesses
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Acked-by: Andy Fleming <afleming@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Detlev Zundel <dzu@denx.de>
Diffstat (limited to 'include/tsec.h')
-rw-r--r-- | include/tsec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tsec.h b/include/tsec.h index d56ec2cd0c5..a066d97be94 100644 --- a/include/tsec.h +++ b/include/tsec.h @@ -7,7 +7,7 @@ * terms of the GNU Public License, Version 2, incorporated * herein by reference. * - * Copyright 2004, 2007, 2009 Freescale Semiconductor, Inc. + * Copyright 2004, 2007, 2009, 2011 Freescale Semiconductor, Inc. * (C) Copyright 2003, Motorola, Inc. * maintained by Xianghua Xiao (x.xiao@motorola.com) * author Andy Fleming @@ -587,9 +587,9 @@ typedef struct tsec #define TSEC_FIBER (1 << 3) /* PHY uses fiber, eg 1000 Base-X */ struct tsec_private { - volatile tsec_t *regs; - volatile tsec_mdio_t *phyregs; - volatile tsec_mdio_t *phyregs_sgmii; + tsec_t *regs; + tsec_mdio_t *phyregs; + tsec_mdio_t *phyregs_sgmii; struct phy_info *phyinfo; uint phyaddr; u32 flags; |