Bump aarch64-paging from 0.9.1 to 0.10.0 #19
Merged
GitHub Actions / clippy
succeeded
Jul 14, 2025 in 0s
clippy
2 warnings
Details
Results
| Message level | Amount |
|---|---|
| Internal compiler error | 0 |
| Error | 0 |
| Warning | 2 |
| Note | 0 |
| Help | 0 |
Versions
- rustc 1.88.0 (6b00bc388 2025-06-23)
- cargo 1.88.0 (873a06493 2025-05-10)
- clippy 0.1.88 (6b00bc3880 2025-06-23)
Annotations
Check warning on line 188 in src/lib.rs
github-actions / clippy
casting function pointer `secondary_entry` to `u64`
warning: casting function pointer `secondary_entry` to `u64`
--> src/lib.rs:188:37
|
188 | smccc::psci::cpu_on::<C>(mpidr, secondary_entry as _, stack_end as _)
| ^^^^^^^^^^^^^^^^^^^^ help: try: `secondary_entry as usize`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast
Check warning on line 182 in src/lib.rs
github-actions / clippy
casting function pointer `rust_entry` to `u64`
warning: casting function pointer `rust_entry` to `u64`
--> src/lib.rs:182:35
|
182 | *params.wrapping_sub(1) = rust_entry as _;
| ^^^^^^^^^^^^^^^ help: try: `rust_entry as usize`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast
= note: `#[warn(clippy::fn_to_numeric_cast)]` on by default
Loading