ds3231: fix accidental breakage of !FDT in 1256067c

MFC after:	10 days
This commit is contained in:
Andriy Gapon 2021-12-13 13:49:47 +02:00
parent df472af034
commit b277ef3304

View File

@ -364,8 +364,9 @@ ds3231_probe(device_t dev)
if (ofw_bus_is_compatible(dev, "maxim,ds3231"))
rc = BUS_PROBE_DEFAULT;
else
rc = BUS_PROBE_NOWILDCARD;
#endif
rc = BUS_PROBE_NOWILDCARD;
device_set_desc(dev, "Maxim DS3231 RTC");
return (rc);