diff options
| author | Ian McIntyre <me@mciantyre.dev> | 2025-06-14 10:16:12 -0400 |
|---|---|---|
| committer | Ian McIntyre <me@mciantyre.dev> | 2025-09-16 07:47:23 -0400 |
| commit | 9728ac5305cfe259115858f0bc49985a0ad7cec4 (patch) | |
| tree | 16294fb24be29ebedd3099b063348c0520000db4 /src/host.rs | |
| parent | ce97696bcd4515b5b2556163aa50c1b4723e7c0f (diff) | |
Adopt Rust 2024 edition
I'm considering this a breaking change. I'll try to introduce new
sections that rely on the user's `unsafe` keyword for linker placement.
Rust 2024 has different opinions on format, and clippy has new thoughts.
Let's adopt them.
Diffstat (limited to 'src/host.rs')
| -rw-r--r-- | src/host.rs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/host.rs b/src/host.rs index ba299dd..2598d50 100644 --- a/src/host.rs +++ b/src/host.rs @@ -639,12 +639,12 @@ impl RuntimeBuilder { fn check_configurations(&self) -> Result<(), String> { if self.family.flexram_bank_count() < self.flexram_banks.bank_count() { return Err(format!( - "Chip {:?} only has {} total FlexRAM banks. Cannot allocate {:?}, a total of {} banks", - self.family, - self.family.flexram_bank_count(), - self.flexram_banks, - self.flexram_banks.bank_count() - )); + "Chip {:?} only has {} total FlexRAM banks. Cannot allocate {:?}, a total of {} banks", + self.family, + self.family.flexram_bank_count(), + self.flexram_banks, + self.flexram_banks.bank_count() + )); } if self.flexram_banks.ocram < self.family.bootrom_ocram_banks() { return Err(format!( @@ -653,13 +653,13 @@ impl RuntimeBuilder { self.family.bootrom_ocram_banks() )); } - if let Some(flash_opts) = &self.flash_opts { - if !flash_opts.flexspi.supported_for_family(self.family) { - return Err(format!( - "Chip {:?} does not support {:?}", - self.family, flash_opts.flexspi - )); - } + if let Some(flash_opts) = &self.flash_opts + && !flash_opts.flexspi.supported_for_family(self.family) + { + return Err(format!( + "Chip {:?} does not support {:?}", + self.family, flash_opts.flexspi + )); } fn prevent_flash(name: &str, memory: Memory) -> Result<(), String> { |
