From: Andreas Sandberg Date: Mon, 19 Dec 2016 16:25:38 +0000 (+0000) Subject: python: Fix incorrect header in the DmaDevice wrapper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d113153b52306a97710ce5da1523862685aba1ae;p=gem5.git python: Fix incorrect header in the DmaDevice wrapper The header declared in the DmaDevice wrapper doesn't actually contain the DmaDevice class. This can potentially lead to incorrect type cases in Swig. Change-Id: If2266d4180d1d6fd13359a81067068854c5e96fe Signed-off-by: Andreas Sandberg Reviewed-by: Sascha Bischoff --- diff --git a/src/dev/Device.py b/src/dev/Device.py index b274b152c..d51d7bd8d 100644 --- a/src/dev/Device.py +++ b/src/dev/Device.py @@ -46,7 +46,7 @@ class BasicPioDevice(PioDevice): class DmaDevice(PioDevice): type = 'DmaDevice' - cxx_header = "dev/io_device.hh" + cxx_header = "dev/dma_device.hh" abstract = True dma = MasterPort("DMA port")