Date: Mon, 8 Jun 2009 21:39:14 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: Ariff Abdullah <ariff@FreeBSD.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r193667 - head/sys/dev/sound/sbus Message-ID: <20090608213828.O22887@maildrop.int.zabbadoz.net> In-Reply-To: <200906072338.n57NcGgu009269@svn.freebsd.org> References: <200906072338.n57NcGgu009269@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 7 Jun 2009, Ariff Abdullah wrote: Hey, > Author: ariff > Date: Sun Jun 7 23:38:16 2009 > New Revision: 193667 > URL: http://svn.freebsd.org/changeset/base/193667 > > Log: > Fix build on sparc64. I am still seeing: /sys/modules/sound/driver/audiocs/../../../../dev/sound/sbus/cs4231.c:290: warning: comparison of distinct pointer types lacks a cast /sys/modules/sound/driver/audiocs/../../../../dev/sound/sbus/cs4231.c:291: warning: comparison of distinct pointer types lacks a cast /sys/modules/sound/driver/audiocs/../../../../dev/sound/sbus/cs4231.c:293: warning: comparison of distinct pointer types lacks a cast /sys/modules/sound/driver/audiocs/../../../../dev/sound/sbus/cs4231.c:305: warning: comparison of distinct pointer types lacks a cast > > Modified: > head/sys/dev/sound/sbus/cs4231.c > > Modified: head/sys/dev/sound/sbus/cs4231.c > ============================================================================== > --- head/sys/dev/sound/sbus/cs4231.c Sun Jun 7 23:16:59 2009 (r193666) > +++ head/sys/dev/sound/sbus/cs4231.c Sun Jun 7 23:38:16 2009 (r193667) > @@ -273,7 +273,7 @@ static u_int32_t cs4231_fmt[] = { > SND_FORMAT(AFMT_IMA_ADPCM, 1, 0), > SND_FORMAT(AFMT_IMA_ADPCM, 2, 0), > SND_FORMAT(AFMT_S16_LE, 1, 0), > - SND_FORMAT(S16_LE, 2, 0), > + SND_FORMAT(AFMT_S16_LE, 2, 0), > SND_FORMAT(AFMT_S16_BE, 1, 0), > SND_FORMAT(AFMT_S16_BE, 2, 0), > 0 > -- Bjoern A. Zeeb The greatest risk is not taking one.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090608213828.O22887>