svn commit: r234521 - stable/7/sys/dev/mmc
Marius Strobl
marius at FreeBSD.org
Sat Apr 21 00:28:29 UTC 2012
Author: marius
Date: Sat Apr 21 00:28:29 2012
New Revision: 234521
URL: http://svn.freebsd.org/changeset/base/234521
Log:
MFC: r189727
read_ivar takes a uintptr_t * not a u_char *.
Modified:
stable/7/sys/dev/mmc/mmc.c
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contrib/opensolaris/ (props changed)
stable/7/sys/contrib/dev/acpica/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
Modified: stable/7/sys/dev/mmc/mmc.c
==============================================================================
--- stable/7/sys/dev/mmc/mmc.c Sat Apr 21 00:26:03 2012 (r234520)
+++ stable/7/sys/dev/mmc/mmc.c Sat Apr 21 00:28:29 2012 (r234521)
@@ -1437,7 +1437,7 @@ mmc_scan(struct mmc_softc *sc)
}
static int
-mmc_read_ivar(device_t bus, device_t child, int which, u_char *result)
+mmc_read_ivar(device_t bus, device_t child, int which, uintptr_t *result)
{
struct mmc_ivars *ivar = device_get_ivars(child);
More information about the svn-src-all
mailing list