summaryrefslogtreecommitdiff
path: root/src/dev/SConscript
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-05-23 09:15:45 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2012-05-23 09:15:45 -0400
commitd4847fe6ea63a1122ed14e6ac6d10ef0a8469194 (patch)
treeb0f2b009c004210e3866e2f1514e55b7eac3785a /src/dev/SConscript
parent5b36cf623cd065eea4f7b5e8b892dc904c030d56 (diff)
downloadgem5-d4847fe6ea63a1122ed14e6ac6d10ef0a8469194.tar.xz
DMA: Split the DMA device and IO device into seperate files
This patch moves the DMA device to its own set of files, splitting it from the IO device. There are no behavioural changes associated with this patch. The patch also grabs the opportunity to do some very minor tidying up, including some white space removal and pruning some redundant parameters. Besides the immediate benefits of the separation-of-concerns, this patch also makes upcoming changes more streamlined as it split the devices that are only slaves and the DMA device that also acts as a master. --HG-- rename : src/dev/io_device.cc => src/dev/dma_device.cc rename : src/dev/io_device.hh => src/dev/dma_device.hh
Diffstat (limited to 'src/dev/SConscript')
-rw-r--r--src/dev/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dev/SConscript b/src/dev/SConscript
index c041081b5..cba821f87 100644
--- a/src/dev/SConscript
+++ b/src/dev/SConscript
@@ -49,6 +49,7 @@ SimObject('Uart.py')
Source('baddev.cc')
Source('copy_engine.cc')
Source('disk_image.cc')
+Source('dma_device.cc')
Source('etherbus.cc')
Source('etherdevice.cc')
Source('etherdump.cc')