svn commit: r193667 - head/sys/dev/sound/sbus

Bjoern A. Zeeb bz at FreeBSD.org
Mon Jun 8 21:40:07 UTC 2009


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.


More information about the svn-src-all mailing list