mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
[bhnd] handle unknown port type.
Reported by: emaste
This commit is contained in:
parent
c19e9bb3b0
commit
988fa8d078
1 changed files with 5 additions and 0 deletions
|
|
@ -251,6 +251,11 @@ bcma_get_port_count(device_t dev, device_t child, bhnd_port_type type)
|
|||
return (dinfo->corecfg->num_bridge_ports);
|
||||
case BHND_PORT_AGENT:
|
||||
return (dinfo->corecfg->num_wrapper_ports);
|
||||
default:
|
||||
device_printf(dev, "%s: unknown type (%d)\n",
|
||||
__func__,
|
||||
type);
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue