Skip to content

Commit

Permalink
Small naming fix in targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Oct 26, 2015
1 parent 3ae7071 commit ab29acd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions targets/atlys_hdmi2usb.py
@@ -1,12 +1,12 @@
from targets.atlys_base import *
from targets.atlys_base import default_subtarget as opsis_base_soc
from targets.atlys_base import default_subtarget as BaseSoC

from gateware.hdmi_in import HDMIIn
from gateware.hdmi_out import HDMIOut
from gateware.encoder import EncoderReader, Encoder
from gateware.streamer import USBStreamer

class VideomixerSoC(opsis_base_soc):
class VideomixerSoC(BaseSoC):
csr_map = {
"hdmi_out0": 20,
"hdmi_out1": 21,
Expand Down
4 changes: 2 additions & 2 deletions targets/opsis_hdmi2usb.py
@@ -1,12 +1,12 @@
from targets.opsis_base import *
from targets.opsis_base import default_subtarget as opsis_base_soc
from targets.opsis_base import default_subtarget as BaseSoC

from gateware.hdmi_in import HDMIIn
from gateware.hdmi_out import HDMIOut
from gateware.encoder import EncoderReader, Encoder
from gateware.streamer import USBStreamer

class VideomixerSoC(opsis_base_soc):
class VideomixerSoC(BaseSoC):
csr_map = {
"hdmi_out0": 20,
"hdmi_out1": 21,
Expand Down

0 comments on commit ab29acd

Please sign in to comment.