diff options
Diffstat (limited to 'sys/dev/fdt/simple_mfd.c')
-rw-r--r-- | sys/dev/fdt/simple_mfd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/fdt/simple_mfd.c b/sys/dev/fdt/simple_mfd.c index 5228c6998821..1c642c6ca99c 100644 --- a/sys/dev/fdt/simple_mfd.c +++ b/sys/dev/fdt/simple_mfd.c @@ -223,7 +223,8 @@ simple_mfd_attach(device_t dev) return (ENXIO); } } - return (bus_generic_attach(dev)); + bus_attach_children(dev); + return (0); } static int |