diff options
author | 2018-06-04 10:33:51 +0000 | |
---|---|---|
committer | 2018-06-04 10:33:51 +0000 | |
commit | e061bba249161609aafa7efcbc97b456928df73d (patch) | |
tree | cade06c5a02386eff36073e996fcbdf584431f6d | |
parent | Remove unused/commented out includes. (diff) | |
download | wireguard-openbsd-e061bba249161609aafa7efcbc97b456928df73d.tar.xz wireguard-openbsd-e061bba249161609aafa7efcbc97b456928df73d.zip |
imxesdhc(4) also supports High Speed mode for SD.
ok kettenis@
-rw-r--r-- | sys/dev/fdt/imxesdhc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fdt/imxesdhc.c b/sys/dev/fdt/imxesdhc.c index ec43886cc24..4f499e47330 100644 --- a/sys/dev/fdt/imxesdhc.c +++ b/sys/dev/fdt/imxesdhc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imxesdhc.c,v 1.6 2018/05/30 13:32:40 patrick Exp $ */ +/* $OpenBSD: imxesdhc.c,v 1.7 2018/06/04 10:33:51 patrick Exp $ */ /* * Copyright (c) 2009 Dale Rahn <drahn@openbsd.org> * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -436,7 +436,7 @@ imxesdhc_attach(struct device *parent, struct device *self, void *aux) saa.caps |= SMC_CAPS_DMA; if (caps & SDHC_HOST_CTRL_CAP_HSS) - saa.caps |= SMC_CAPS_MMC_HIGHSPEED; + saa.caps |= SMC_CAPS_MMC_HIGHSPEED | SMC_CAPS_SD_HIGHSPEED; width = OF_getpropint(sc->sc_node, "bus-width", 1); if (width >= 8) |