Skip to content

Commit

Permalink
Separate virtio headers into their own lib
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Bui <[email protected]>
  • Loading branch information
andybui01 authored and abrandnewusername committed Nov 29, 2022
1 parent 9e09ea4 commit 44410bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions components/Init/src/virtio_blk.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
#include <camkes.h>
#include <camkes/dataport.h>

#include <ethdrivers/virtio/virtio_pci.h>
#include <ethdrivers/virtio/virtio_net.h>
#include <ethdrivers/virtio/virtio_ring.h>
#include <satadrivers/virtio/virtio_blk.h>
#include <virtio/virtio_pci.h>
#include <virtio/virtio_net.h>
#include <virtio/virtio_ring.h>
#include <virtio/virtio_blk.h>

#include <sel4vm/guest_vm.h>
#include <sel4vm/guest_memory.h>
Expand Down
6 changes: 3 additions & 3 deletions components/Init/src/virtio_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#include <camkes.h>
#include <camkes/dataport.h>

#include <ethdrivers/virtio/virtio_pci.h>
#include <ethdrivers/virtio/virtio_net.h>
#include <ethdrivers/virtio/virtio_ring.h>
#include <virtio/virtio_pci.h>
#include <virtio/virtio_net.h>
#include <virtio/virtio_ring.h>

#include <sel4vm/guest_vm.h>
#include <sel4vm/guest_memory.h>
Expand Down

0 comments on commit 44410bd

Please sign in to comment.