Enable clocks.
authorkettenis <kettenis@openbsd.org>
Sun, 14 Feb 2021 19:23:58 +0000 (19:23 +0000)
committerkettenis <kettenis@openbsd.org>
Sun, 14 Feb 2021 19:23:58 +0000 (19:23 +0000)
sys/arch/armv7/exynos/exdwusb.c

index 0c7ce3a..37b2d4d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: exdwusb.c,v 1.2 2019/08/29 14:19:27 kettenis Exp $    */
+/*     $OpenBSD: exdwusb.c,v 1.3 2021/02/14 19:23:58 kettenis Exp $    */
 /*
  * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
  *
@@ -25,6 +25,7 @@
 #include <arm/simplebus/simplebusvar.h>
 
 #include <dev/ofw/openfirm.h>
+#include <dev/ofw/ofw_clock.h>
 #include <dev/ofw/fdt.h>
 
 struct exdwusb_softc {
@@ -56,5 +57,7 @@ exdwusb_attach(struct device *parent, struct device *self, void *aux)
        struct exdwusb_softc *sc = (struct exdwusb_softc *)self;
        struct fdt_attach_args *faa = aux;
 
+       clock_enable_all(faa->fa_node);
+
        simplebus_attach(parent, &sc->sc_sbus.sc_dev, faa);
 }