diff options
Diffstat (limited to 'sys/dev/fdt/tascodec.c')
-rw-r--r-- | sys/dev/fdt/tascodec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/fdt/tascodec.c b/sys/dev/fdt/tascodec.c index 1c63afd3990..9769aa10693 100644 --- a/sys/dev/fdt/tascodec.c +++ b/sys/dev/fdt/tascodec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tascodec.c,v 1.7 2023/07/15 13:35:17 kettenis Exp $ */ +/* $OpenBSD: tascodec.c,v 1.8 2023/12/26 09:25:15 kettenis Exp $ */ /* * Copyright (c) 2022 Mark Kettenis <kettenis@openbsd.org> * @@ -26,6 +26,7 @@ #include <dev/ofw/openfirm.h> #include <dev/ofw/ofw_gpio.h> #include <dev/ofw/ofw_misc.h> +#include <dev/ofw/ofw_regulator.h> #include <dev/ofw/fdt.h> #include <dev/i2c/i2cvar.h> @@ -127,6 +128,8 @@ tascodec_attach(struct device *parent, struct device *self, void *aux) printf("\n"); + regulator_enable(OF_getpropint(node, "SDZ-supply", 0)); + sdz_gpiolen = OF_getproplen(node, "shutdown-gpios"); if (sdz_gpiolen > 0) { sdz_gpio = malloc(sdz_gpiolen, M_TEMP, M_WAITOK); |