diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-01 12:52:32 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-01 12:52:32 -0400 |
commit | 46ff7dd09653e9fb32440fcafb59d54096a1ff52 (patch) | |
tree | 2dde0f46bd882ebe4aeba8b033972ff19b932343 /boot/bootmeth_cros.c | |
parent | a803f87202aa48974bdff4d8100464a8288931e4 (diff) | |
parent | a831d1137845732db68ac80edf15bfe4a68d0c8f (diff) |
Merge branch '2023-11-01-bootstd-fixes'
- Four patches to address issues with bootstd flows in some cases
Diffstat (limited to 'boot/bootmeth_cros.c')
-rw-r--r-- | boot/bootmeth_cros.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/boot/bootmeth_cros.c b/boot/bootmeth_cros.c index 20e0b1e89c..cd72db8250 100644 --- a/boot/bootmeth_cros.c +++ b/boot/bootmeth_cros.c @@ -406,7 +406,7 @@ static int cros_read_file(struct udevice *dev, struct bootflow *bflow, return -ENOSYS; } -#if CONFIG_IS_ENABLED(BOOSTD_FULL) +#if CONFIG_IS_ENABLED(BOOTSTD_FULL) static int cros_read_all(struct udevice *dev, struct bootflow *bflow) { int ret; @@ -419,7 +419,7 @@ static int cros_read_all(struct udevice *dev, struct bootflow *bflow) return 0; } -#endif /* BOOSTD_FULL */ +#endif /* BOOTSTD_FULL */ static int cros_boot(struct udevice *dev, struct bootflow *bflow) { @@ -458,9 +458,9 @@ static struct bootmeth_ops cros_bootmeth_ops = { .read_bootflow = cros_read_bootflow, .read_file = cros_read_file, .boot = cros_boot, -#if CONFIG_IS_ENABLED(BOOSTD_FULL) +#if CONFIG_IS_ENABLED(BOOTSTD_FULL) .read_all = cros_read_all, -#endif /* BOOSTD_FULL */ +#endif /* BOOTSTD_FULL */ }; static const struct udevice_id cros_bootmeth_ids[] = { |