ALSA: ice1712/wtm: fix coding style

before:
total: 2 errors, 0 warnings, 20 lines checked
total: 49 errors, 2 warnings, 518 lines checked

after:
total: 0 errors, 0 warnings, 20 lines checked
total: 0 errors, 0 warnings, 518 lines checked

Compile tested, size and code are equal.

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Alexander Beregalov 2008-09-07 01:54:27 +04:00 committed by Jaroslav Kysela
parent 1ce211a9db
commit f14d8e9750
2 changed files with 54 additions and 54 deletions

View file

@ -1,12 +1,12 @@
/* /*
* ALSA driver for ICEnsemble VT1724 (Envy24HT) * ALSA driver for ICEnsemble VT1724 (Envy24HT)
* *
* Lowlevel functions for Ego Sys Waveterminal 192M * Lowlevel functions for Ego Sys Waveterminal 192M
* *
* Copyright (c) 2006 Guedez Clement <klem.dev@gmail.com> * Copyright (c) 2006 Guedez Clement <klem.dev@gmail.com>
* Some functions are taken from the Prodigy192 driver * Some functions are taken from the Prodigy192 driver
* source * source
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
@ -20,12 +20,12 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* *
*/ */
#include <asm/io.h> #include <linux/io.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/init.h> #include <linux/init.h>
@ -39,9 +39,9 @@
/* /*
* 2*ADC 6*DAC no1 ringbuffer r/w on i2c bus * 2*ADC 6*DAC no1 ringbuffer r/w on i2c bus
*/ */
static inline void stac9460_put(struct snd_ice1712 *ice, int reg, static inline void stac9460_put(struct snd_ice1712 *ice, int reg,
unsigned char val) unsigned char val)
{ {
snd_vt1724_write_i2c(ice, STAC9460_I2C_ADDR, reg, val); snd_vt1724_write_i2c(ice, STAC9460_I2C_ADDR, reg, val);
@ -73,7 +73,7 @@ static inline unsigned char stac9460_2_get(struct snd_ice1712 *ice, int reg)
#define stac9460_dac_mute_info snd_ctl_boolean_mono_info #define stac9460_dac_mute_info snd_ctl_boolean_mono_info
static int stac9460_dac_mute_get(struct snd_kcontrol *kcontrol, static int stac9460_dac_mute_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
unsigned char val; unsigned char val;
@ -88,14 +88,14 @@ static int stac9460_dac_mute_get(struct snd_kcontrol *kcontrol,
} }
if (id < 6) if (id < 6)
val = stac9460_get(ice, idx); val = stac9460_get(ice, idx);
else else
val = stac9460_2_get(ice,idx - 6); val = stac9460_2_get(ice, idx - 6);
ucontrol->value.integer.value[0] = (~val >> 7) & 0x1; ucontrol->value.integer.value[0] = (~val >> 7) & 0x1;
return 0; return 0;
} }
static int stac9460_dac_mute_put(struct snd_kcontrol *kcontrol, static int stac9460_dac_mute_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
unsigned char new, old; unsigned char new, old;
@ -105,8 +105,8 @@ static int stac9460_dac_mute_put(struct snd_kcontrol *kcontrol,
if (kcontrol->private_value) { if (kcontrol->private_value) {
idx = STAC946X_MASTER_VOLUME; idx = STAC946X_MASTER_VOLUME;
old = stac9460_get(ice, idx); old = stac9460_get(ice, idx);
new = (~ucontrol->value.integer.value[0]<< 7 & 0x80) | new = (~ucontrol->value.integer.value[0] << 7 & 0x80) |
(old & ~0x80); (old & ~0x80);
change = (new != old); change = (new != old);
if (change) { if (change) {
stac9460_put(ice, idx, new); stac9460_put(ice, idx, new);
@ -117,16 +117,16 @@ static int stac9460_dac_mute_put(struct snd_kcontrol *kcontrol,
idx = id + STAC946X_LF_VOLUME; idx = id + STAC946X_LF_VOLUME;
if (id < 6) if (id < 6)
old = stac9460_get(ice, idx); old = stac9460_get(ice, idx);
else else
old = stac9460_2_get(ice, idx - 6); old = stac9460_2_get(ice, idx - 6);
new = (~ucontrol->value.integer.value[0]<< 7 & 0x80) | new = (~ucontrol->value.integer.value[0] << 7 & 0x80) |
(old & ~0x80); (old & ~0x80);
change = (new != old); change = (new != old);
if (change) { if (change) {
if (id < 6) if (id < 6)
stac9460_put(ice, idx, new); stac9460_put(ice, idx, new);
else else
stac9460_2_put(ice, idx - 6, new); stac9460_2_put(ice, idx - 6, new);
} }
} }
return change; return change;
@ -136,7 +136,7 @@ static int stac9460_dac_mute_put(struct snd_kcontrol *kcontrol,
* DAC volume attenuation mixer control * DAC volume attenuation mixer control
*/ */
static int stac9460_dac_vol_info(struct snd_kcontrol *kcontrol, static int stac9460_dac_vol_info(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_info *uinfo) struct snd_ctl_elem_info *uinfo)
{ {
uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
uinfo->count = 1; uinfo->count = 1;
@ -146,7 +146,7 @@ static int stac9460_dac_vol_info(struct snd_kcontrol *kcontrol,
} }
static int stac9460_dac_vol_get(struct snd_kcontrol *kcontrol, static int stac9460_dac_vol_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
int idx, id; int idx, id;
@ -161,14 +161,14 @@ static int stac9460_dac_vol_get(struct snd_kcontrol *kcontrol,
} }
if (id < 6) if (id < 6)
vol = stac9460_get(ice, idx) & 0x7f; vol = stac9460_get(ice, idx) & 0x7f;
else else
vol = stac9460_2_get(ice, idx - 6) & 0x7f; vol = stac9460_2_get(ice, idx - 6) & 0x7f;
ucontrol->value.integer.value[0] = 0x7f - vol; ucontrol->value.integer.value[0] = 0x7f - vol;
return 0; return 0;
} }
static int stac9460_dac_vol_put(struct snd_kcontrol *kcontrol, static int stac9460_dac_vol_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
int idx, id; int idx, id;
@ -182,8 +182,8 @@ static int stac9460_dac_vol_put(struct snd_kcontrol *kcontrol,
ovol = 0x7f - (tmp & 0x7f); ovol = 0x7f - (tmp & 0x7f);
change = (ovol != nvol); change = (ovol != nvol);
if (change) { if (change) {
stac9460_put(ice, idx, (0x7f - nvol) | (tmp & 0x80)); stac9460_put(ice, idx, (0x7f - nvol) | (tmp & 0x80));
stac9460_2_put(ice, idx, (0x7f - nvol) | (tmp & 0x80)); stac9460_2_put(ice, idx, (0x7f - nvol) | (tmp & 0x80));
} }
} else { } else {
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
@ -191,17 +191,17 @@ static int stac9460_dac_vol_put(struct snd_kcontrol *kcontrol,
nvol = ucontrol->value.integer.value[0] & 0x7f; nvol = ucontrol->value.integer.value[0] & 0x7f;
if (id < 6) if (id < 6)
tmp = stac9460_get(ice, idx); tmp = stac9460_get(ice, idx);
else else
tmp = stac9460_2_get(ice, idx - 6); tmp = stac9460_2_get(ice, idx - 6);
ovol = 0x7f - (tmp & 0x7f); ovol = 0x7f - (tmp & 0x7f);
change = (ovol != nvol); change = (ovol != nvol);
if (change) { if (change) {
if (id < 6) if (id < 6)
stac9460_put(ice, idx, (0x7f - nvol) | stac9460_put(ice, idx, (0x7f - nvol) |
(tmp & 0x80)); (tmp & 0x80));
else else
stac9460_2_put(ice, idx-6, (0x7f - nvol) | stac9460_2_put(ice, idx-6, (0x7f - nvol) |
(tmp & 0x80)); (tmp & 0x80));
} }
} }
return change; return change;
@ -213,12 +213,12 @@ static int stac9460_dac_vol_put(struct snd_kcontrol *kcontrol,
#define stac9460_adc_mute_info snd_ctl_boolean_stereo_info #define stac9460_adc_mute_info snd_ctl_boolean_stereo_info
static int stac9460_adc_mute_get(struct snd_kcontrol *kcontrol, static int stac9460_adc_mute_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
unsigned char val; unsigned char val;
int i, id; int i, id;
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
if (id == 0) { if (id == 0) {
for (i = 0; i < 2; ++i) { for (i = 0; i < 2; ++i) {
@ -235,20 +235,20 @@ static int stac9460_adc_mute_get(struct snd_kcontrol *kcontrol,
} }
static int stac9460_adc_mute_put(struct snd_kcontrol *kcontrol, static int stac9460_adc_mute_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
unsigned char new, old; unsigned char new, old;
int i, reg, id; int i, reg, id;
int change; int change;
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
if (id == 0) { if (id == 0) {
for (i = 0; i < 2; ++i) { for (i = 0; i < 2; ++i) {
reg = STAC946X_MIC_L_VOLUME + i; reg = STAC946X_MIC_L_VOLUME + i;
old = stac9460_get(ice, reg); old = stac9460_get(ice, reg);
new = (~ucontrol->value.integer.value[i]<<7&0x80) | new = (~ucontrol->value.integer.value[i]<<7&0x80) |
(old&~0x80); (old&~0x80);
change = (new != old); change = (new != old);
if (change) if (change)
stac9460_put(ice, reg, new); stac9460_put(ice, reg, new);
@ -258,7 +258,7 @@ static int stac9460_adc_mute_put(struct snd_kcontrol *kcontrol,
reg = STAC946X_MIC_L_VOLUME + i; reg = STAC946X_MIC_L_VOLUME + i;
old = stac9460_2_get(ice, reg); old = stac9460_2_get(ice, reg);
new = (~ucontrol->value.integer.value[i]<<7&0x80) | new = (~ucontrol->value.integer.value[i]<<7&0x80) |
(old&~0x80); (old&~0x80);
change = (new != old); change = (new != old);
if (change) if (change)
stac9460_2_put(ice, reg, new); stac9460_2_put(ice, reg, new);
@ -271,7 +271,7 @@ static int stac9460_adc_mute_put(struct snd_kcontrol *kcontrol,
*ADC gain mixer control *ADC gain mixer control
*/ */
static int stac9460_adc_vol_info(struct snd_kcontrol *kcontrol, static int stac9460_adc_vol_info(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_info *uinfo) struct snd_ctl_elem_info *uinfo)
{ {
uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
uinfo->count = 2; uinfo->count = 2;
@ -281,12 +281,12 @@ static int stac9460_adc_vol_info(struct snd_kcontrol *kcontrol,
} }
static int stac9460_adc_vol_get(struct snd_kcontrol *kcontrol, static int stac9460_adc_vol_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
int i, reg, id; int i, reg, id;
unsigned char vol; unsigned char vol;
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
if (id == 0) { if (id == 0) {
for (i = 0; i < 2; ++i) { for (i = 0; i < 2; ++i) {
@ -305,13 +305,13 @@ static int stac9460_adc_vol_get(struct snd_kcontrol *kcontrol,
} }
static int stac9460_adc_vol_put(struct snd_kcontrol *kcontrol, static int stac9460_adc_vol_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
int i, reg, id; int i, reg, id;
unsigned char ovol, nvol; unsigned char ovol, nvol;
int change; int change;
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
if (id == 0) { if (id == 0) {
for (i = 0; i < 2; ++i) { for (i = 0; i < 2; ++i) {
@ -321,7 +321,7 @@ static int stac9460_adc_vol_put(struct snd_kcontrol *kcontrol,
change = ((ovol & 0x0f) != nvol); change = ((ovol & 0x0f) != nvol);
if (change) if (change)
stac9460_put(ice, reg, (0x0f - nvol) | stac9460_put(ice, reg, (0x0f - nvol) |
(ovol & ~0x0f)); (ovol & ~0x0f));
} }
} else { } else {
for (i = 0; i < 2; ++i) { for (i = 0; i < 2; ++i) {
@ -331,7 +331,7 @@ static int stac9460_adc_vol_put(struct snd_kcontrol *kcontrol,
change = ((ovol & 0x0f) != nvol); change = ((ovol & 0x0f) != nvol);
if (change) if (change)
stac9460_2_put(ice, reg, (0x0f - nvol) | stac9460_2_put(ice, reg, (0x0f - nvol) |
(ovol & ~0x0f)); (ovol & ~0x0f));
} }
} }
return change; return change;
@ -344,23 +344,23 @@ static int stac9460_adc_vol_put(struct snd_kcontrol *kcontrol,
#define stac9460_mic_sw_info snd_ctl_boolean_mono_info #define stac9460_mic_sw_info snd_ctl_boolean_mono_info
static int stac9460_mic_sw_get(struct snd_kcontrol *kcontrol, static int stac9460_mic_sw_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
unsigned char val; unsigned char val;
int id; int id;
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
if (id == 0) if (id == 0)
val = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); val = stac9460_get(ice, STAC946X_GENERAL_PURPOSE);
else else
val = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE); val = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE);
ucontrol->value.integer.value[0] = ~val>>7 & 0x1; ucontrol->value.integer.value[0] = ~val>>7 & 0x1;
return 0; return 0;
} }
static int stac9460_mic_sw_put(struct snd_kcontrol *kcontrol, static int stac9460_mic_sw_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
unsigned char new, old; unsigned char new, old;
@ -368,16 +368,16 @@ static int stac9460_mic_sw_put(struct snd_kcontrol *kcontrol,
id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); id = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
if (id == 0) if (id == 0)
old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE); old = stac9460_get(ice, STAC946X_GENERAL_PURPOSE);
else else
old = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE); old = stac9460_2_get(ice, STAC946X_GENERAL_PURPOSE);
new = (~ucontrol->value.integer.value[0]<< 7 & 0x80) | (old & ~0x80); new = (~ucontrol->value.integer.value[0] << 7 & 0x80) | (old & ~0x80);
change = (new != old); change = (new != old);
if (change) { if (change) {
if (id == 0) if (id == 0)
stac9460_put(ice, STAC946X_GENERAL_PURPOSE, new); stac9460_put(ice, STAC946X_GENERAL_PURPOSE, new);
else else
stac9460_2_put(ice, STAC946X_GENERAL_PURPOSE, new); stac9460_2_put(ice, STAC946X_GENERAL_PURPOSE, new);
} }
return change; return change;
} }
@ -443,7 +443,7 @@ static struct snd_kcontrol_new stac9640_controls[] __devinitdata = {
.get = stac9460_adc_vol_get, .get = stac9460_adc_vol_get,
.put = stac9460_adc_vol_put, .put = stac9460_adc_vol_put,
} }
}; };
@ -470,7 +470,7 @@ static int __devinit wtm_init(struct snd_ice1712 *ice)
(unsigned short)-1 (unsigned short)-1
}; };
unsigned short *p; unsigned short *p;
/*WTM 192M*/ /*WTM 192M*/
ice->num_total_dacs = 8; ice->num_total_dacs = 8;
ice->num_total_adcs = 4; ice->num_total_adcs = 4;

View file

@ -10,8 +10,8 @@
*/ */
#define AK4114_ADDR 0x20 /*S/PDIF receiver*/ #define AK4114_ADDR 0x20 /*S/PDIF receiver*/
#define STAC9460_I2C_ADDR 0x54 /* ADC*2 | DAC*6 */ #define STAC9460_I2C_ADDR 0x54 /* ADC*2 | DAC*6 */
#define STAC9460_2_I2C_ADDR 0x56 /* ADC|DAC *2 */ #define STAC9460_2_I2C_ADDR 0x56 /* ADC|DAC *2 */
extern struct snd_ice1712_card_info snd_vt1724_wtm_cards[]; extern struct snd_ice1712_card_info snd_vt1724_wtm_cards[];