Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jul 2009 20:27:57 GMT
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 166472 for review
Message-ID:  <200907232027.n6NKRvj3075042@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=166472

Change 166472 by gonzo@gonzo_figaro on 2009/07/23 20:27:21

	- Fix functions prototypes to conform pre-defined types

Affected files ...

.. //depot/projects/avr32/src/sys/dev/mmc/atmel_mci.c#5 edit

Differences ...

==== //depot/projects/avr32/src/sys/dev/mmc/atmel_mci.c#5 (text+ko) ====

@@ -275,7 +275,8 @@
 }
 
 static void
-atmel_mci_getaddr(void *arg, void *segs, int nsegs, int error)
+atmel_mci_getaddr(void *arg, bus_dma_segment_t *segs, 
+    int nsegs, int error)
 {
 	if (error != 0)
 		return;
@@ -614,7 +615,7 @@
 }
 
 static int
-atmel_mci_read_ivar(device_t bus, device_t child, int which, u_char *result)
+atmel_mci_read_ivar(device_t bus, device_t child, int which, uintptr_t *result)
 {
 	struct atmel_mci_softc *sc = device_get_softc(bus);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200907232027.n6NKRvj3075042>