Skip to content

Commit

Permalink
rpi5-gmsl: skip deser's non-sink pads
Browse files Browse the repository at this point in the history
  • Loading branch information
Demon000 committed Feb 7, 2025
1 parent 176ff64 commit d3cdd00
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion utils/cam-configs/rpi5-gmsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,10 @@ def find_devices(mdev_name, deser_regex):

cameras = {}

for p in [p for p in deser.pads if p.index < 4]:
for p in deser.pads:
if not p.is_sink:
continue

if len(p.links) == 0:
continue

Expand Down

0 comments on commit d3cdd00

Please sign in to comment.