util: Fix typos

Change-Id: Ia405384211aa53ac089a99ecd31acc25effdb71e
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38653
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Elyes HAOUAS 2020-01-30 15:08:03 +01:00 committed by Patrick Georgi
parent 16043d6742
commit 99e54fece3
2 changed files with 4 additions and 4 deletions

View File

@ -1439,7 +1439,7 @@ int main(int argc, char **argv)
integrate_firmwares(&ctx, amd_romsig, amd_fw_table);
ctx.current = ALIGN(ctx.current, 0x10000U); /* todo: is necessary? */
ctx.current = ALIGN(ctx.current, 0x10000U); /* TODO: is necessary? */
if (multi) {
/* Do 2nd PSP directory followed by 1st */

View File

@ -631,11 +631,11 @@ static void dump_fmsba(const fmsba_t *fmsba)
static void dump_jid(uint32_t jid)
{
printf(" SPI Componend Vendor ID: 0x%02x\n",
printf(" SPI Component Vendor ID: 0x%02x\n",
jid & 0xff);
printf(" SPI Componend Device ID 0: 0x%02x\n",
printf(" SPI Component Device ID 0: 0x%02x\n",
(jid >> 8) & 0xff);
printf(" SPI Componend Device ID 1: 0x%02x\n",
printf(" SPI Component Device ID 1: 0x%02x\n",
(jid >> 16) & 0xff);
}