Skip to content

Commit

Permalink
Applying the lint on 587 makes things not work, but the other one is …
Browse files Browse the repository at this point in the history
…okay? Sure.
  • Loading branch information
rslawson committed Sep 16, 2024
1 parent 6b4eeb0 commit e5994e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ topologyTest refClk sysClk sysRst IlaControl{syncRst = rst, ..} rxNs rxPs miso c
<$> transceivers.rxClocks
<*> transceivers.txClocks

txAllStables = map (xpmCdcSingle sysClk allStable1) transceivers.txClocks
txAllStables = zipWith (xpmCdcSingle sysClk) transceivers.txClocks (repeat allStable1)
allStable1 = sticky sysClk syncRst allStable0
txResets2 =
zipWith
Expand Down Expand Up @@ -654,7 +654,7 @@ topologyTest refClk sysClk sysRst IlaControl{syncRst = rst, ..} rxNs rxPs miso c
(xpmCdcMaybeLossy clkIn clkOut inp)
where
fillStat = fillStats clkIn noReset fillLvl
inp = (fmap Just $ bundle (ugn, fillLvl, stable, fillStat))
inp = Just <$> bundle (ugn, fillLvl, stable, fillStat)

ugnsStable = map (fmap (\(_, _, x, _) -> x)) freeUgnDatas

Expand Down

0 comments on commit e5994e0

Please sign in to comment.