diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-05-01 16:04:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-05-01 16:04:40 +0000 |
commit | 6bd1ebc4f6372213e2d48e527b38f1d9c3c14f0e (patch) | |
tree | 80ea831bd0078578a4716851e31069b80e26e830 /sys/arch/armv7/exynos/exesdhc.c | |
parent | 9350001d745387d778c568a6f38cc76cb9f0beb8 (diff) |
Add support for changing the bus width to the sdmmc subsystem and the sdhc(4)
controller. Use this to switch SD cards to a 4-bit bus if they support it.
ok deraadt@, jsg@
Diffstat (limited to 'sys/arch/armv7/exynos/exesdhc.c')
-rw-r--r-- | sys/arch/armv7/exynos/exesdhc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/armv7/exynos/exesdhc.c b/sys/arch/armv7/exynos/exesdhc.c index 8d8df1ac7e3..7e03d5f5245 100644 --- a/sys/arch/armv7/exynos/exesdhc.c +++ b/sys/arch/armv7/exynos/exesdhc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exesdhc.c,v 1.5 2016/04/24 00:57:23 patrick Exp $ */ +/* $OpenBSD: exesdhc.c,v 1.6 2016/05/01 16:04:39 kettenis Exp $ */ /* * Copyright (c) 2009 Dale Rahn <drahn@openbsd.org> * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -228,6 +228,7 @@ struct sdmmc_chip_functions exesdhc_functions = { /* bus power and clock frequency */ exesdhc_bus_power, exesdhc_bus_clock, + NULL, /* command execution */ exesdhc_exec_command, /* card interrupt */ |