diff options
author | Dave Liu <r63238@freescale.com> | 2008-01-14 11:12:01 +0800 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-01-14 10:34:30 +0100 |
commit | 06c428bcd4413014b43236e77765022071424fa6 (patch) | |
tree | 5c7554314e4a81f06eaf7f55a7ecafc0683d306f /drivers/qe/uec.c | |
parent | 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88 (diff) | |
download | u-boot-imx-06c428bcd4413014b43236e77765022071424fa6.zip u-boot-imx-06c428bcd4413014b43236e77765022071424fa6.tar.gz u-boot-imx-06c428bcd4413014b43236e77765022071424fa6.tar.bz2 |
QE: fix compile warning
qe.c: In function 'qe_upload_firmware':
qe.c:390: warning: pointer targets in passing argument 2
uec.c: In function 'uec_initialize':
uec.c:1236: warning: 'uec_info' may be used uninitialized
Signed-off-by: Dave Liu <daveliu@freescale.com>
Diffstat (limited to 'drivers/qe/uec.c')
-rw-r--r-- | drivers/qe/uec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/qe/uec.c b/drivers/qe/uec.c index 44cbea5..6cb25bf 100644 --- a/drivers/qe/uec.c +++ b/drivers/qe/uec.c @@ -1249,6 +1249,7 @@ int uec_initialize(int index) memset(uec, 0, sizeof(uec_private_t)); /* Init UEC private struct, they come from board.h */ + uec_info = NULL; if (index == 0) { #ifdef CONFIG_UEC_ETH1 uec_info = ð1_uec_info; |