src/{commonlib,lib}: Fix typo
Change-Id: If7650ac4d9be2614a9665c7f2aba9ac5cc413efe Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/28097 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
committed by
Patrick Georgi
parent
068253c369
commit
0b13397d15
@ -197,7 +197,7 @@ static int mmc_select_hs(struct storage_media *media)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mmc_send_tunning_seq(struct sd_mmc_ctrlr *ctrlr, char *buffer)
|
static int mmc_send_tuning_seq(struct sd_mmc_ctrlr *ctrlr, char *buffer)
|
||||||
{
|
{
|
||||||
struct mmc_command cmd;
|
struct mmc_command cmd;
|
||||||
struct mmc_data data;
|
struct mmc_data data;
|
||||||
@ -225,7 +225,7 @@ static int mmc_bus_tuning(struct storage_media *media)
|
|||||||
/* Request the device send the tuning sequence up to 40 times */
|
/* Request the device send the tuning sequence up to 40 times */
|
||||||
ctrlr->tuning_start(ctrlr, 0);
|
ctrlr->tuning_start(ctrlr, 0);
|
||||||
for (index = 0; index < 40; index++) {
|
for (index = 0; index < 40; index++) {
|
||||||
mmc_send_tunning_seq(ctrlr, buffer);
|
mmc_send_tuning_seq(ctrlr, buffer);
|
||||||
if (ctrlr->is_tuning_complete(ctrlr, &successful)) {
|
if (ctrlr->is_tuning_complete(ctrlr, &successful)) {
|
||||||
if (successful)
|
if (successful)
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -511,7 +511,7 @@ static int load_self_segments(struct segment *head, struct prog *payload,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Each architecture can perform additonal operations
|
* Each architecture can perform additional operations
|
||||||
* on the loaded segment
|
* on the loaded segment
|
||||||
*/
|
*/
|
||||||
prog_segment_loaded((uintptr_t)dest, ptr->s_memsz,
|
prog_segment_loaded((uintptr_t)dest, ptr->s_memsz,
|
||||||
|
Reference in New Issue
Block a user