aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ctxfi
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-09-13 05:44:21 -0400
committerTakashi Iwai <tiwai@suse.de>2013-09-13 08:36:09 -0400
commitb71495ee425943afd80b8188e5c273254b3557a2 (patch)
tree4709c3b4be9a5672182cf55373507a44b5d5b2b8 /sound/pci/ctxfi
parent0c21fccd97f0ff58e6e9699370a09f6ec8946061 (diff)
ALSA: ctxfi: Staticize local symbols
Local symbols used only in this file are made static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi')
-rw-r--r--sound/pci/ctxfi/ctdaio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ctxfi/ctdaio.c b/sound/pci/ctxfi/ctdaio.c
index 0c00eb4088ef..84f86bf63b8f 100644
--- a/sound/pci/ctxfi/ctdaio.c
+++ b/sound/pci/ctxfi/ctdaio.c
@@ -33,7 +33,7 @@ struct daio_rsc_idx {
33 unsigned short right; 33 unsigned short right;
34}; 34};
35 35
36struct daio_rsc_idx idx_20k1[NUM_DAIOTYP] = { 36static struct daio_rsc_idx idx_20k1[NUM_DAIOTYP] = {
37 [LINEO1] = {.left = 0x00, .right = 0x01}, 37 [LINEO1] = {.left = 0x00, .right = 0x01},
38 [LINEO2] = {.left = 0x18, .right = 0x19}, 38 [LINEO2] = {.left = 0x18, .right = 0x19},
39 [LINEO3] = {.left = 0x08, .right = 0x09}, 39 [LINEO3] = {.left = 0x08, .right = 0x09},
@@ -44,7 +44,7 @@ struct daio_rsc_idx idx_20k1[NUM_DAIOTYP] = {
44 [SPDIFI1] = {.left = 0x95, .right = 0x9d}, 44 [SPDIFI1] = {.left = 0x95, .right = 0x9d},
45}; 45};
46 46
47struct daio_rsc_idx idx_20k2[NUM_DAIOTYP] = { 47static struct daio_rsc_idx idx_20k2[NUM_DAIOTYP] = {
48 [LINEO1] = {.left = 0x40, .right = 0x41}, 48 [LINEO1] = {.left = 0x40, .right = 0x41},
49 [LINEO2] = {.left = 0x60, .right = 0x61}, 49 [LINEO2] = {.left = 0x60, .right = 0x61},
50 [LINEO3] = {.left = 0x50, .right = 0x51}, 50 [LINEO3] = {.left = 0x50, .right = 0x51},