svn commit: r194177 - head/sys/dev/sound/pci/hda

Alexander Motin mav at FreeBSD.org
Sun Jun 14 07:34:22 UTC 2009


Author: mav
Date: Sun Jun 14 07:34:21 2009
New Revision: 194177
URL: http://svn.freebsd.org/changeset/base/194177

Log:
  Fix type of lowaddr variable.

Modified:
  head/sys/dev/sound/pci/hda/hdac.c

Modified: head/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdac.c	Sun Jun 14 07:02:50 2009	(r194176)
+++ head/sys/dev/sound/pci/hda/hdac.c	Sun Jun 14 07:34:21 2009	(r194177)
@@ -87,7 +87,7 @@
 
 #include "mixer_if.h"
 
-#define HDA_DRV_TEST_REV	"20090608_0134"
+#define HDA_DRV_TEST_REV	"20090614_0135"
 
 SND_DECLARE_FILE("$FreeBSD$");
 
@@ -1593,9 +1593,9 @@ hdac_dma_cb(void *callback_arg, bus_dma_
 static int
 hdac_dma_alloc(struct hdac_softc *sc, struct hdac_dma *dma, bus_size_t size)
 {
+	bus_addr_t lowaddr;
 	bus_size_t roundsz;
 	int result;
-	int lowaddr;
 
 	roundsz = roundup2(size, HDAC_DMA_ALIGNMENT);
 	lowaddr = (sc->support_64bit) ? BUS_SPACE_MAXADDR :


More information about the svn-src-all mailing list