mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Hints-only devices should have BUS_PROBE_NOWILDCARD set. We probably need
a better flag for this (in the driver metadata, for example).
This commit is contained in:
parent
bd422cef88
commit
b665cfc0f5
2 changed files with 2 additions and 2 deletions
|
|
@ -58,7 +58,7 @@ terasic_de4led_nexus_probe(device_t dev)
|
|||
{
|
||||
|
||||
device_set_desc(dev, "Terasic DE4 8-element LED");
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
return (BUS_PROBE_NOWILDCARD);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ terasic_mtl_nexus_probe(device_t dev)
|
|||
{
|
||||
|
||||
device_set_desc(dev, "Terasic Multi-touch LCD (MTL)");
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
return (BUS_PROBE_NOWILDCARD);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue