Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding missing commas.
  • Loading branch information
mithro committed Sep 13, 2015
1 parent 07a7897 commit 6b0c78f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions targets/atlys_hdmi2ethernet.py
Expand Up @@ -56,7 +56,7 @@ class VideomixerSoC(EtherboneSoC):
csr_map = {
"fb": 20,
"dvisampler": 21,
"dvisampler_edid_mem": 22
"dvisampler_edid_mem": 22,
}
csr_map.update(EtherboneSoC.csr_map)

Expand All @@ -82,8 +82,8 @@ def __init__(self, platform, **kwargs):

class HDMI2EthernetSoC(VideomixerSoC):
csr_map = {
"encoder_reader": 23
"encoder" : 24
"encoder_reader": 23,
"encoder" : 24,
}
csr_map.update(VideomixerSoC.csr_map)
mem_map = {
Expand Down

0 comments on commit 6b0c78f

Please sign in to comment.