svn commit: r189727 - head/sys/dev/mmc
Warner Losh
imp at FreeBSD.org
Wed Mar 11 23:36:45 PDT 2009
Author: imp
Date: Thu Mar 12 06:36:44 2009
New Revision: 189727
URL: http://svn.freebsd.org/changeset/base/189727
Log:
read_ivar takes a uintptr_t * not a u_char *.
Modified:
head/sys/dev/mmc/mmc.c
Modified: head/sys/dev/mmc/mmc.c
==============================================================================
--- head/sys/dev/mmc/mmc.c Thu Mar 12 06:35:00 2009 (r189726)
+++ head/sys/dev/mmc/mmc.c Thu Mar 12 06:36:44 2009 (r189727)
@@ -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