cmd_litesata: Fix help printf and update CHANGES.
This commit is contained in:
parent
b7cbd6c7fb
commit
648c70de82
|
@ -35,6 +35,7 @@
|
|||
- litepcie : Added 7-Series MSI-X capability/integration.
|
||||
- liteiclink : Improved GTH3/GTH4 support and similarity with Wizard's generated code.
|
||||
- liteeth_gen : Added SGMII/1000BaseX PHYs support.
|
||||
- litesata/dma : Add multi-sector support.
|
||||
|
||||
[> Changed
|
||||
----------
|
||||
|
|
|
@ -66,7 +66,7 @@ static void sata_sec2mem_handler(int nb_params, char **params)
|
|||
uint8_t *dst;
|
||||
|
||||
if (nb_params < 2) {
|
||||
printf("sata_s2m <sector> <dst_addr> [count]");
|
||||
printf("sata_sec2mem <sector> <dst_addr> [count]");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -145,7 +145,7 @@ static void sata_mem2sec_handler(int nb_params, char **params)
|
|||
uint8_t *src;
|
||||
|
||||
if (nb_params < 2) {
|
||||
printf("sata_s2m <src_addr> <sector> [count]");
|
||||
printf("sata_mem2sec <src_addr> <sector> [count]");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue