forked from M-Labs/artiq
rtio: fix DMA get_csrs
This commit is contained in:
parent
eb8d630148
commit
c413d95b49
|
@ -376,6 +376,6 @@ class DMA(Module):
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_csrs(self):
|
def get_csrs(self):
|
||||||
return ([self.enable, self.busy] +
|
return ([self.enable] +
|
||||||
self.dma.get_csrs() + self.time_offset.get_csrs() +
|
self.dma.get_csrs() + self.time_offset.get_csrs() +
|
||||||
self.cri_master.get_csrs())
|
self.cri_master.get_csrs())
|
||||||
|
|
Loading…
Reference in New Issue