Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Jul 2008 21:21:06 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 144668 for review
Message-ID:  <200807042121.m64LL651081066@repoman.freebsd.org>

index | next in thread | raw e-mail

http://perforce.freebsd.org/chv.cgi?CH=144668

Change 144668 by hselasky@hselasky_laptop001 on 2008/07/04 21:20:50

	
	Align buffer properly. ARM processors cannot
	read unaligned words or double words.

Affected files ...

.. //depot/projects/usb/src/sys/arm/at91/at91_mci.c#4 edit

Differences ...

==== //depot/projects/usb/src/sys/arm/at91/at91_mci.c#4 (text+ko) ====

@@ -80,7 +80,7 @@
 	int bus_busy;
 	struct mmc_request *req;
 	struct mmc_command *curcmd;
-	char bounce_buffer[BBSZ];
+	uint32_t bounce_buffer[BBSZ/4];
 };
 
 static inline uint32_t


help

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