mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Hide SEMB port of the SiI3826 Port Multiplier by default to avoid extra
errors while it tries to talk via I2C to usually missing external SEP. There is tunable to enable it back when needed.
This commit is contained in:
parent
cabc512fe4
commit
6efe203d7c
1 changed files with 3 additions and 1 deletions
|
|
@ -595,7 +595,9 @@ pmpdone(struct cam_periph *periph, union ccb *done_ccb)
|
|||
* causes timeouts if external SEP is not connected
|
||||
* to PMP over I2C.
|
||||
*/
|
||||
if (softc->pm_pid == 0x37261095 && softc->pm_ports == 6)
|
||||
if ((softc->pm_pid == 0x37261095 ||
|
||||
softc->pm_pid == 0x38261095) &&
|
||||
softc->pm_ports == 6)
|
||||
softc->pm_ports = 5;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue