Date: Sun, 14 Jun 2009 07:34:21 +0000 (UTC) From: Alexander Motin <mav@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r194177 - head/sys/dev/sound/pci/hda Message-ID: <200906140734.n5E7YL0L039466@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 :
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906140734.n5E7YL0L039466>