Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
728850a7
Commit
728850a7
authored
May 02, 2011
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALSA: hda - Constify fixup and other array data in patch_ca0110.c
Signed-off-by:
Takashi Iwai
<
tiwai@suse.de
>
parent
779d0659
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
sound/pci/hda/patch_ca0110.c
sound/pci/hda/patch_ca0110.c
+8
-8
No files found.
sound/pci/hda/patch_ca0110.c
View file @
728850a7
...
@@ -134,7 +134,7 @@ static int ca0110_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
...
@@ -134,7 +134,7 @@ static int ca0110_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
/*
/*
*/
*/
static
c
har
*
dirstr
[
2
]
=
{
"Playback"
,
"Capture"
};
static
c
onst
char
*
const
dirstr
[
2
]
=
{
"Playback"
,
"Capture"
};
static
int
_add_switch
(
struct
hda_codec
*
codec
,
hda_nid_t
nid
,
const
char
*
pfx
,
static
int
_add_switch
(
struct
hda_codec
*
codec
,
hda_nid_t
nid
,
const
char
*
pfx
,
int
chan
,
int
dir
)
int
chan
,
int
dir
)
...
@@ -171,7 +171,7 @@ static int ca0110_build_controls(struct hda_codec *codec)
...
@@ -171,7 +171,7 @@ static int ca0110_build_controls(struct hda_codec *codec)
{
{
struct
ca0110_spec
*
spec
=
codec
->
spec
;
struct
ca0110_spec
*
spec
=
codec
->
spec
;
struct
auto_pin_cfg
*
cfg
=
&
spec
->
autocfg
;
struct
auto_pin_cfg
*
cfg
=
&
spec
->
autocfg
;
static
c
har
*
prefix
[
AUTO_CFG_MAX_OUTS
]
=
{
static
c
onst
char
*
const
prefix
[
AUTO_CFG_MAX_OUTS
]
=
{
"Front"
,
"Surround"
,
NULL
,
"Side"
,
"Multi"
"Front"
,
"Surround"
,
NULL
,
"Side"
,
"Multi"
};
};
hda_nid_t
mutenid
;
hda_nid_t
mutenid
;
...
@@ -259,7 +259,7 @@ static int ca0110_build_controls(struct hda_codec *codec)
...
@@ -259,7 +259,7 @@ static int ca0110_build_controls(struct hda_codec *codec)
/*
/*
*/
*/
static
struct
hda_pcm_stream
ca0110_pcm_analog_playback
=
{
static
const
struct
hda_pcm_stream
ca0110_pcm_analog_playback
=
{
.
substreams
=
1
,
.
substreams
=
1
,
.
channels_min
=
2
,
.
channels_min
=
2
,
.
channels_max
=
8
,
.
channels_max
=
8
,
...
@@ -270,7 +270,7 @@ static struct hda_pcm_stream ca0110_pcm_analog_playback = {
...
@@ -270,7 +270,7 @@ static struct hda_pcm_stream ca0110_pcm_analog_playback = {
},
},
};
};
static
struct
hda_pcm_stream
ca0110_pcm_analog_capture
=
{
static
const
struct
hda_pcm_stream
ca0110_pcm_analog_capture
=
{
.
substreams
=
1
,
.
substreams
=
1
,
.
channels_min
=
2
,
.
channels_min
=
2
,
.
channels_max
=
2
,
.
channels_max
=
2
,
...
@@ -280,7 +280,7 @@ static struct hda_pcm_stream ca0110_pcm_analog_capture = {
...
@@ -280,7 +280,7 @@ static struct hda_pcm_stream ca0110_pcm_analog_capture = {
},
},
};
};
static
struct
hda_pcm_stream
ca0110_pcm_digital_playback
=
{
static
const
struct
hda_pcm_stream
ca0110_pcm_digital_playback
=
{
.
substreams
=
1
,
.
substreams
=
1
,
.
channels_min
=
2
,
.
channels_min
=
2
,
.
channels_max
=
2
,
.
channels_max
=
2
,
...
@@ -291,7 +291,7 @@ static struct hda_pcm_stream ca0110_pcm_digital_playback = {
...
@@ -291,7 +291,7 @@ static struct hda_pcm_stream ca0110_pcm_digital_playback = {
},
},
};
};
static
struct
hda_pcm_stream
ca0110_pcm_digital_capture
=
{
static
const
struct
hda_pcm_stream
ca0110_pcm_digital_capture
=
{
.
substreams
=
1
,
.
substreams
=
1
,
.
channels_min
=
2
,
.
channels_min
=
2
,
.
channels_max
=
2
,
.
channels_max
=
2
,
...
@@ -389,7 +389,7 @@ static void ca0110_free(struct hda_codec *codec)
...
@@ -389,7 +389,7 @@ static void ca0110_free(struct hda_codec *codec)
kfree
(
codec
->
spec
);
kfree
(
codec
->
spec
);
}
}
static
struct
hda_codec_ops
ca0110_patch_ops
=
{
static
const
struct
hda_codec_ops
ca0110_patch_ops
=
{
.
build_controls
=
ca0110_build_controls
,
.
build_controls
=
ca0110_build_controls
,
.
build_pcms
=
ca0110_build_pcms
,
.
build_pcms
=
ca0110_build_pcms
,
.
init
=
ca0110_init
,
.
init
=
ca0110_init
,
...
@@ -539,7 +539,7 @@ static int patch_ca0110(struct hda_codec *codec)
...
@@ -539,7 +539,7 @@ static int patch_ca0110(struct hda_codec *codec)
/*
/*
* patch entries
* patch entries
*/
*/
static
struct
hda_codec_preset
snd_hda_preset_ca0110
[]
=
{
static
const
struct
hda_codec_preset
snd_hda_preset_ca0110
[]
=
{
{
.
id
=
0x1102000a
,
.
name
=
"CA0110-IBG"
,
.
patch
=
patch_ca0110
},
{
.
id
=
0x1102000a
,
.
name
=
"CA0110-IBG"
,
.
patch
=
patch_ca0110
},
{
.
id
=
0x1102000b
,
.
name
=
"CA0110-IBG"
,
.
patch
=
patch_ca0110
},
{
.
id
=
0x1102000b
,
.
name
=
"CA0110-IBG"
,
.
patch
=
patch_ca0110
},
{
.
id
=
0x1102000d
,
.
name
=
"SB0880 X-Fi"
,
.
patch
=
patch_ca0110
},
{
.
id
=
0x1102000d
,
.
name
=
"SB0880 X-Fi"
,
.
patch
=
patch_ca0110
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment