config: ruby: mi protocol: correct master slave setting for dma
In the MI protocol, the master slave connection between the dma controller and network was being set incorrectly. This patch corrects it.
This commit is contained in:
parent
d67cf81f5d
commit
cca1608bd5
1 changed files with 2 additions and 2 deletions
|
@ -154,8 +154,8 @@ def create_system(options, full_system, system, dma_ports, ruby_system):
|
|||
dma_cntrl_nodes.append(dma_cntrl)
|
||||
|
||||
# Connect the directory controllers and the network
|
||||
dma_cntrl.requestToDir = ruby_system.network.master
|
||||
dma_cntrl.responseFromDir = ruby_system.network.slave
|
||||
dma_cntrl.requestToDir = ruby_system.network.slave
|
||||
dma_cntrl.responseFromDir = ruby_system.network.master
|
||||
|
||||
all_cntrls = l1_cntrl_nodes + dir_cntrl_nodes + dma_cntrl_nodes
|
||||
|
||||
|
|
Loading…
Reference in a new issue