diff options
author | Vincent Siles <vincent.siles@provenrun.com> | 2016-04-22 09:52:07 +0200 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-05-18 08:51:44 -0700 |
commit | 12cbf20d78f93c86e287d86ff863926e5cde9355 (patch) | |
tree | e263e8ba8f8c604210f9b9bed1959be9f6ba7530 /board/freescale | |
parent | 15b96ad8318d8670d3a776e72dbf8edaca74e4a7 (diff) | |
download | u-boot-imx-12cbf20d78f93c86e287d86ff863926e5cde9355.zip u-boot-imx-12cbf20d78f93c86e287d86ff863926e5cde9355.tar.gz u-boot-imx-12cbf20d78f93c86e287d86ff863926e5cde9355.tar.bz2 |
arm: uniform usage of u32 in ls102x caam config
Mix usage of uint32_t and u32 fixed in favor of u32.
Signed-off-by: Vincent Siles <vincent.siles@provenrun.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/common/ls102xa_stream_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/common/ls102xa_stream_id.c b/board/freescale/common/ls102xa_stream_id.c index 39e7b30..3d5404e 100644 --- a/board/freescale/common/ls102xa_stream_id.c +++ b/board/freescale/common/ls102xa_stream_id.c @@ -28,6 +28,6 @@ void ls1021x_config_caam_stream_id(struct liodn_id_table *tbl, int size) else liodn = tbl[i].id[0]; - out_le32((uint32_t *)(tbl[i].reg_offset), liodn); + out_le32((u32 *)(tbl[i].reg_offset), liodn); } } |