diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-12-10 10:35:15 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-12-10 10:35:15 +0000 |
commit | 139c97c9772be38577eaa52af5d1ef3607da4bcb (patch) | |
tree | ce65908298ab9e146ea43541ebbe57b6277a9ee2 /src/dev/virtio | |
parent | 2d79bf3d4dfd997d352b8399c4c9f3ff9d05de41 (diff) | |
download | gem5-139c97c9772be38577eaa52af5d1ef3607da4bcb.tar.xz |
dev: Move existing PCI device functionality to src/dev/pci
Move pcidev.(hh|cc) to src/dev/pci/device.(hh|cc) and update existing
devices to use the new header location. This also renames the PCIDEV
debug flag to have a capitalization that is consistent with the PCI
host and other devices.
--HG--
rename : src/dev/Pci.py => src/dev/pci/PciDevice.py
rename : src/dev/pcidev.cc => src/dev/pci/device.cc
rename : src/dev/pcidev.hh => src/dev/pci/device.hh
rename : src/dev/pcireg.h => src/dev/pci/pcireg.h
Diffstat (limited to 'src/dev/virtio')
-rw-r--r-- | src/dev/virtio/VirtIO.py | 2 | ||||
-rw-r--r-- | src/dev/virtio/pci.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/virtio/VirtIO.py b/src/dev/virtio/VirtIO.py index 13479a383..81bf6e3b8 100644 --- a/src/dev/virtio/VirtIO.py +++ b/src/dev/virtio/VirtIO.py @@ -41,7 +41,7 @@ from m5.SimObject import SimObject from m5.params import * from m5.proxy import * from Device import PioDevice -from Pci import PciDevice +from PciDevice import PciDevice class VirtIODeviceBase(SimObject): diff --git a/src/dev/virtio/pci.hh b/src/dev/virtio/pci.hh index be5a140e2..dcac7c592 100644 --- a/src/dev/virtio/pci.hh +++ b/src/dev/virtio/pci.hh @@ -42,7 +42,7 @@ #include "base/statistics.hh" #include "dev/virtio/base.hh" -#include "dev/pcidev.hh" +#include "dev/pci/device.hh" struct PciVirtIOParams; |