ALSA: hdspm - Cosmetics, no real change
This patch does nothing, it's sole intent is to clean up the code. Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
b0bf550476
commit
e71b95ad71
|
@ -2926,7 +2926,7 @@ static int hdspm_autosync_ref(struct hdspm *hdspm)
|
||||||
case HDSPM_SelSyncRef_NVALID:
|
case HDSPM_SelSyncRef_NVALID:
|
||||||
return HDSPM_AUTOSYNC_FROM_NONE;
|
return HDSPM_AUTOSYNC_FROM_NONE;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return HDSPM_AUTOSYNC_FROM_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5260,7 +5260,7 @@ static int snd_hdspm_set_defaults(struct hdspm * hdspm)
|
||||||
|
|
||||||
case AES32:
|
case AES32:
|
||||||
hdspm->control_register =
|
hdspm->control_register =
|
||||||
HDSPM_ClockModeMaster | /* Master Cloack Mode on */
|
HDSPM_ClockModeMaster | /* Master Clock Mode on */
|
||||||
hdspm_encode_latency(7) | /* latency max=8192samples */
|
hdspm_encode_latency(7) | /* latency max=8192samples */
|
||||||
HDSPM_SyncRef0 | /* AES1 is syncclock */
|
HDSPM_SyncRef0 | /* AES1 is syncclock */
|
||||||
HDSPM_LineOut | /* Analog output in */
|
HDSPM_LineOut | /* Analog output in */
|
||||||
|
@ -6737,7 +6737,7 @@ static int snd_hdspm_create(struct snd_card *card,
|
||||||
if (NULL != hdspm->tco) {
|
if (NULL != hdspm->tco) {
|
||||||
hdspm_tco_write(hdspm);
|
hdspm_tco_write(hdspm);
|
||||||
}
|
}
|
||||||
snd_printk(KERN_INFO "HDSPM: MADI TCO module found\n");
|
snd_printk(KERN_INFO "HDSPM: MADI/AES TCO module found\n");
|
||||||
} else {
|
} else {
|
||||||
hdspm->tco = NULL;
|
hdspm->tco = NULL;
|
||||||
}
|
}
|
||||||
|
@ -6752,10 +6752,12 @@ static int snd_hdspm_create(struct snd_card *card,
|
||||||
case AES32:
|
case AES32:
|
||||||
if (hdspm->tco) {
|
if (hdspm->tco) {
|
||||||
hdspm->texts_autosync = texts_autosync_aes_tco;
|
hdspm->texts_autosync = texts_autosync_aes_tco;
|
||||||
hdspm->texts_autosync_items = 10;
|
hdspm->texts_autosync_items =
|
||||||
|
ARRAY_SIZE(texts_autosync_aes_tco);
|
||||||
} else {
|
} else {
|
||||||
hdspm->texts_autosync = texts_autosync_aes;
|
hdspm->texts_autosync = texts_autosync_aes;
|
||||||
hdspm->texts_autosync_items = 9;
|
hdspm->texts_autosync_items =
|
||||||
|
ARRAY_SIZE(texts_autosync_aes);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue