Skip to content

Commit b9abaf6

Browse files
committed
type-trivialization and dep-reduction.
1 parent 454e113 commit b9abaf6

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

tock/chips/arty_e21/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ edition = "2018"
66

77
[dependencies]
88
sifive = { path = "../sifive" }
9-
rv32i = { path = "../../arch/rv32i" }
109
kernel = { path = "../../kernel" }
1110

tock/chips/arty_e21/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
pub mod chip {
88
use kernel;
9-
use rv32i;
109

1110
extern "C" {
1211
fn _start_trap();
@@ -21,7 +20,7 @@ impl ArtyExx {
2120

2221
impl kernel::Chip for ArtyExx {
2322
type MPU = ();
24-
type UserspaceKernelBoundary = rv32i::syscall::SysCall;
23+
type UserspaceKernelBoundary = ();
2524
type SysTick = ();
2625
}
2726

0 commit comments

Comments
 (0)