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 <andreas.sandberg@arm.com> Reviewed-by: Sascha Bischoff <sascha.bischoff@arm.com>
This commit is contained in:
parent
ac8e73565a
commit
d113153b52
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class BasicPioDevice(PioDevice):
|
||||||
|
|
||||||
class DmaDevice(PioDevice):
|
class DmaDevice(PioDevice):
|
||||||
type = 'DmaDevice'
|
type = 'DmaDevice'
|
||||||
cxx_header = "dev/io_device.hh"
|
cxx_header = "dev/dma_device.hh"
|
||||||
abstract = True
|
abstract = True
|
||||||
dma = MasterPort("DMA port")
|
dma = MasterPort("DMA port")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue