diff options
author | Marek Vasut <marex@denx.de> | 2015-07-26 10:59:19 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-08 14:14:24 +0200 |
commit | f1f22f7204ce933881f2e1026b4c9e7115d06d25 (patch) | |
tree | 20b24f9aedefa2c5a68c89932113d8be2005cf9c /drivers | |
parent | c984278a66f0b785835e058fc4e3e9731c5fa94f (diff) | |
download | u-boot-imx-f1f22f7204ce933881f2e1026b4c9e7115d06d25.zip u-boot-imx-f1f22f7204ce933881f2e1026b4c9e7115d06d25.tar.gz u-boot-imx-f1f22f7204ce933881f2e1026b4c9e7115d06d25.tar.bz2 |
ddr: altera: Minor clean up of rw_mgr_mem_handoff()
Add kerneldoc and perform a minor comment cleanup.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ddr/altera/sequencer.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/drivers/ddr/altera/sequencer.c b/drivers/ddr/altera/sequencer.c index eb0e8cf..9470aca 100644 --- a/drivers/ddr/altera/sequencer.c +++ b/drivers/ddr/altera/sequencer.c @@ -1018,21 +1018,22 @@ static void rw_mgr_mem_initialize(void) 0); } -/* - * At the end of calibration we have to program the user settings in, and - * USER hand off the memory to the user. +/** + * rw_mgr_mem_handoff() - Hand off the memory to user + * + * At the end of calibration we have to program the user settings in + * and hand off the memory to the user. */ static void rw_mgr_mem_handoff(void) { rw_mgr_mem_load_user(RW_MGR_MRS0_USER_MIRR, RW_MGR_MRS0_USER, 1); /* - * USER need to wait tMOD (12CK or 15ns) time before issuing - * other commands, but we will have plenty of NIOS cycles before - * actual handoff so its okay. + * Need to wait tMOD (12CK or 15ns) time before issuing other + * commands, but we will have plenty of NIOS cycles before actual + * handoff so its okay. */ } - /** * rw_mgr_mem_calibrate_write_test_issue() - Issue write test command * @group: Write Group |