fix: 🐛 Rename RPi4 imports
This commit is contained in:
parent
bb38addd83
commit
90d5d96098
|
@ -5,7 +5,7 @@
|
||||||
//! GICC Driver - GIC CPU interface.
|
//! GICC Driver - GIC CPU interface.
|
||||||
|
|
||||||
use {
|
use {
|
||||||
crate::{bsp::device_driver::common::MMIODerefWrapper, exception},
|
crate::{exception, platform::device_driver::common::MMIODerefWrapper},
|
||||||
tock_registers::{
|
tock_registers::{
|
||||||
interfaces::{Readable, Writeable},
|
interfaces::{Readable, Writeable},
|
||||||
register_bitfields, register_structs,
|
register_bitfields, register_structs,
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
use {
|
use {
|
||||||
crate::{
|
crate::{
|
||||||
bsp::device_driver::common::MMIODerefWrapper,
|
platform::device_driver::common::MMIODerefWrapper,
|
||||||
state,
|
state,
|
||||||
synchronization::{self, IRQSafeNullLock},
|
synchronization::{self, IRQSafeNullLock},
|
||||||
},
|
},
|
||||||
|
|
|
@ -80,8 +80,8 @@ mod gicc;
|
||||||
mod gicd;
|
mod gicd;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
bsp::{self, cpu::BOOT_CORE_ID, device_driver::common::BoundedUsize},
|
|
||||||
cpu, drivers, exception,
|
cpu, drivers, exception,
|
||||||
|
platform::{self, cpu::BOOT_CORE_ID, device_driver::common::BoundedUsize},
|
||||||
synchronization::{self, InitStateLock},
|
synchronization::{self, InitStateLock},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ impl GICv2 {
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
use synchronization::interface::ReadWriteEx;
|
use synchronization::interface::ReadWriteEx;
|
||||||
|
|
||||||
impl driver::interface::DeviceDriver for GICv2 {
|
impl drivers::interface::DeviceDriver for GICv2 {
|
||||||
type IRQNumberType = IRQNumber;
|
type IRQNumberType = IRQNumber;
|
||||||
|
|
||||||
fn compatible(&self) -> &'static str {
|
fn compatible(&self) -> &'static str {
|
||||||
|
|
Loading…
Reference in New Issue