Skip to content

Commit

Permalink
remove unnecessary pub
Browse files Browse the repository at this point in the history
  • Loading branch information
anemoneflower committed Jan 12, 2021
1 parent 130b36e commit eadf240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel-rs/src/kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub struct Kernel {
/// This is a global instead of allocated because it must be multiple contiguous pages, which
/// `kernel().alloc()` doesn't support, and page aligned.
// TODO(efenniht): I moved out pages from Disk. Did I changed semantics (pointer indirection?)
pub virtqueue: [RawPage; 2],
virtqueue: [RawPage; 2],

pub devsw: [Devsw; NDEV],

Expand Down

0 comments on commit eadf240

Please sign in to comment.