Skip to content

Commit b9e63dd

Browse files
cargo: bump arm-gic from 0.7.2 to 0.8.1 in /src/exercises/bare-metal/rtc (#3145)
Bumps arm-gic from 0.7.2 to 0.8.1. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Walbran <qwandor@google.com>
1 parent 5a849c6 commit b9e63dd

4 files changed

Lines changed: 58 additions & 11 deletions

File tree

src/exercises/bare-metal/rtc/Cargo.lock

Lines changed: 51 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/exercises/bare-metal/rtc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ publish = false
99
[dependencies]
1010
aarch64-paging = { version = "0.12.0", default-features = false }
1111
aarch64-rt = "0.4.3"
12-
arm-gic = "0.7.2"
13-
arm-pl011-uart = "0.4.0"
12+
arm-gic = "0.8.1"
13+
arm-pl011-uart = "0.5.0"
1414
bitflags = "2.11.0"
1515
chrono = { version = "0.4.44", default-features = false }
1616
log = "0.4.29"
17-
safe-mmio = "0.2.7"
17+
safe-mmio = "0.3.0"
1818
smccc = "0.2.2"
1919
spin = "0.10.0"
2020
zerocopy = "0.8.48"

src/exercises/bare-metal/rtc/src/exceptions.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
// limitations under the License.
1515

1616
use aarch64_rt::{ExceptionHandlers, RegisterStateRef, exception_handlers};
17-
use arm_gic::gicv3::{GicCpuInterface, InterruptGroup};
17+
use arm_gic::InterruptGroup;
18+
use arm_gic::gicv3::GicCpuInterface;
1819
use log::{error, info, trace};
1920
use smccc::Hvc;
2021
use smccc::psci::system_off;

src/exercises/bare-metal/rtc/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ use aarch64_paging::descriptor::El1Attributes;
3232
use aarch64_rt::{InitialPagetable, entry, initial_pagetable};
3333
use arm_gic::gicv3::registers::{Gicd, GicrSgi};
3434
use arm_gic::gicv3::{GicCpuInterface, GicV3};
35-
use arm_pl011_uart::{PL011Registers, Uart, UniqueMmioPointer};
35+
use arm_pl011_uart::{PL011Registers, Uart};
3636
use core::panic::PanicInfo;
3737
use core::ptr::NonNull;
3838
use log::{LevelFilter, error, info, trace};
39+
use safe_mmio::UniqueMmioPointer;
3940
use smccc::Hvc;
4041
use smccc::psci::system_off;
4142

0 commit comments

Comments
 (0)