Commit 2e4832f5 authored by Jaroslav Kysela's avatar Jaroslav Kysela

[ALSA] [trivial] Fix compilation warnings on 64bit

SPARC cs4231 driver
Fixed the compilation warnings about the pointer size.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent b5269e8b
......@@ -390,7 +390,7 @@ static void __cs4231_writeb(cs4231_t *cp, u8 val, void __iomem *reg_addr)
* Basic I/O functions
*/
void snd_cs4231_outm(cs4231_t *chip, unsigned char reg,
static void snd_cs4231_outm(cs4231_t *chip, unsigned char reg,
unsigned char mask, unsigned char value)
{
int timeout;
......@@ -473,9 +473,9 @@ static unsigned char snd_cs4231_in(cs4231_t *chip, unsigned char reg)
return ret;
}
#ifdef CONFIG_SND_DEBUG
#if 0
void snd_cs4231_debug(cs4231_t *chip)
static void snd_cs4231_debug(cs4231_t *chip)
{
printk("CS4231 REGS: INDEX = 0x%02x ",
__cs4231_readb(chip, CS4231P(chip, REGSEL)));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment