diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2010-07-26 18:34:57 -0500 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2010-08-09 11:52:29 -0700 |
commit | 78b7a8ef8b37582a37a5c2381191061380b42831 (patch) | |
tree | 83c83cf11bd20ffc752f0e158532b45a413c6836 /drivers/qe/uec.c | |
parent | 48690d8024eeeaee3120db702e54fcb238e6d9c7 (diff) | |
download | u-boot-imx-78b7a8ef8b37582a37a5c2381191061380b42831.zip u-boot-imx-78b7a8ef8b37582a37a5c2381191061380b42831.tar.gz u-boot-imx-78b7a8ef8b37582a37a5c2381191061380b42831.tar.bz2 |
net: rename "FSL UECx" net interfaces "UECx"
continuation of commit 2ecc2262d66a286e3aac79005bcb5f461312dea8
"net ppc: fix ethernet device names with spaces" (currently in
u-boot-net.git) for QE based parts.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Acked-by: Dave Liu <daveliu@freescale.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'drivers/qe/uec.c')
-rw-r--r-- | drivers/qe/uec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/qe/uec.c b/drivers/qe/uec.c index ccbf27d..3e92fe9 100644 --- a/drivers/qe/uec.c +++ b/drivers/qe/uec.c @@ -1367,7 +1367,7 @@ int uec_initialize(bd_t *bis, uec_info_t *uec_info) uec->uec_info = uec_info; uec->dev = dev; - sprintf(dev->name, "FSL UEC%d", uec_info->uf_info.ucc_num); + sprintf(dev->name, "UEC%d", uec_info->uf_info.ucc_num); dev->iobase = 0; dev->priv = (void *)uec; dev->init = uec_init; |