diff options
author | Patrick Georgi <pgeorgi@google.com> | 2018-04-30 15:05:58 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-02 07:58:23 +0000 |
commit | d13c4cd6217c11201ae61c4ff81ad0b75f78e37e (patch) | |
tree | 756bed834e73e4fea3b665ecf131fbe020bcf312 /src/lib | |
parent | f5180a957a020f8387a67f6c1c6045424df648f4 (diff) |
lib/cbfs.c: fix typo
Change-Id: I39c12ab3f28b5448fa4f46958cf23f2623a92378
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/25928
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/cbfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c index 2dcd429361..87ab3877f8 100644 --- a/src/lib/cbfs.c +++ b/src/lib/cbfs.c @@ -45,7 +45,7 @@ int cbfs_boot_locate(struct cbfsf *fh, const char *name, uint32_t *type) if (cbfs_boot_region_properties(&props)) return -1; - /* All boot CBFS operations are performed using the RO devie. */ + /* All boot CBFS operations are performed using the RO device. */ boot_dev = boot_device_ro(); if (boot_dev == NULL) |