summaryrefslogtreecommitdiff
path: root/util/ifdtool
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-01-30 15:08:03 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-02-17 15:53:49 +0000
commit99e54fece3d6e03b21366f6415dea6972a7eda8d (patch)
tree5a28eeb396f30518d4276b8fd197affeb110535a /util/ifdtool
parent16043d6742aedb2740d23628fead775748aa0ce0 (diff)
downloadcoreboot-99e54fece3d6e03b21366f6415dea6972a7eda8d.tar.xz
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>
Diffstat (limited to 'util/ifdtool')
-rw-r--r--util/ifdtool/ifdtool.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/ifdtool/ifdtool.c b/util/ifdtool/ifdtool.c
index 2bf2f4d266..d89e77d2c2 100644
--- a/util/ifdtool/ifdtool.c
+++ b/util/ifdtool/ifdtool.c
@@ -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);
}