Commit ae1f6865 authored by Li Yang's avatar Li Yang

soc: fsl: qe: ucc_slow: remove 0 assignment for kzalloc'ed structure

Not necessary to set to 0 for the kzalloc'ed area so remove these
assignements.
Signed-off-by: default avatarLi Yang <leoyang.li@nxp.com>
parent b1be4a22
......@@ -168,16 +168,9 @@ int ucc_slow_init(struct ucc_slow_info * us_info, struct ucc_slow_private ** ucc
return -ENOMEM;
}
uccs->saved_uccm = 0;
uccs->p_rx_frame = 0;
us_regs = uccs->us_regs;
uccs->p_ucce = (u16 *) & (us_regs->ucce);
uccs->p_uccm = (u16 *) & (us_regs->uccm);
#ifdef STATISTICS
uccs->rx_frames = 0;
uccs->tx_frames = 0;
uccs->rx_discarded = 0;
#endif /* STATISTICS */
/* Get PRAM base */
uccs->us_pram_offset =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment