svn commit: r188462 - head/sys/dev/sdhci

Warner Losh imp at FreeBSD.org
Tue Feb 10 15:13:49 PST 2009


Author: imp
Date: Tue Feb 10 23:13:48 2009
New Revision: 188462
URL: http://svn.freebsd.org/changeset/base/188462

Log:
  Fix read_ivar prototype.

Modified:
  head/sys/dev/sdhci/sdhci.c

Modified: head/sys/dev/sdhci/sdhci.c
==============================================================================
--- head/sys/dev/sdhci/sdhci.c	Tue Feb 10 22:50:23 2009	(r188461)
+++ head/sys/dev/sdhci/sdhci.c	Tue Feb 10 23:13:48 2009	(r188462)
@@ -1427,7 +1427,7 @@ sdhci_intr(void *arg)
 }
 
 static int
-sdhci_read_ivar(device_t bus, device_t child, int which, u_char *result)
+sdhci_read_ivar(device_t bus, device_t child, int which, uintptr_t *result)
 {
 	struct sdhci_slot *slot = device_get_ivars(child);
 


More information about the svn-src-all mailing list