Date: Tue, 10 Feb 2009 23:13:48 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r188462 - head/sys/dev/sdhci Message-ID: <200902102313.n1ANDm7S007156@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902102313.n1ANDm7S007156>