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
e6826ef1
Commit
e6826ef1
authored
Mar 12, 2015
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-linus' into for-next
parents
4945f1fd
be3bb823
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
13 deletions
+28
-13
sound/core/control.c
sound/core/control.c
+5
-0
sound/firewire/dice/dice-interface.h
sound/firewire/dice/dice-interface.h
+9
-9
sound/firewire/dice/dice-proc.c
sound/firewire/dice/dice-proc.c
+2
-2
sound/firewire/iso-resources.c
sound/firewire/iso-resources.c
+1
-2
sound/pci/hda/patch_conexant.c
sound/pci/hda/patch_conexant.c
+11
-0
No files found.
sound/core/control.c
View file @
e6826ef1
...
...
@@ -1207,6 +1207,11 @@ static int snd_ctl_elem_add(struct snd_ctl_file *file,
struct
user_element
*
ue
;
int
err
;
if
(
!*
info
->
id
.
name
)
return
-
EINVAL
;
if
(
strnlen
(
info
->
id
.
name
,
sizeof
(
info
->
id
.
name
))
>=
sizeof
(
info
->
id
.
name
))
return
-
EINVAL
;
/* Delete a control to replace them if needed. */
if
(
replace
)
{
info
->
id
.
numid
=
0
;
...
...
sound/firewire/dice/dice-interface.h
View file @
e6826ef1
...
...
@@ -298,24 +298,24 @@
*/
#define RX_ISOCHRONOUS 0x008
/*
* Index of first quadlet to be interpreted; read/write. If > 0, that many
* quadlets at the beginning of each data block will be ignored, and all the
* audio and MIDI quadlets will follow.
*/
#define RX_SEQ_START 0x00c
/*
* The number of audio channels; read-only. There will be one quadlet per
* channel.
*/
#define RX_NUMBER_AUDIO 0x0
0c
#define RX_NUMBER_AUDIO 0x0
10
/*
* The number of MIDI ports, 0-8; read-only. If > 0, there will be one
* additional quadlet in each data block, following the audio quadlets.
*/
#define RX_NUMBER_MIDI 0x010
/*
* Index of first quadlet to be interpreted; read/write. If > 0, that many
* quadlets at the beginning of each data block will be ignored, and all the
* audio and MIDI quadlets will follow.
*/
#define RX_SEQ_START 0x014
#define RX_NUMBER_MIDI 0x014
/*
* Names of all audio channels; read-only. Quadlets are byte-swapped. Names
...
...
sound/firewire/dice/dice-proc.c
View file @
e6826ef1
...
...
@@ -99,9 +99,9 @@ static void dice_proc_read(struct snd_info_entry *entry,
}
tx
;
struct
{
u32
iso
;
u32
seq_start
;
u32
number_audio
;
u32
number_midi
;
u32
seq_start
;
char
names
[
RX_NAMES_SIZE
];
u32
ac3_caps
;
u32
ac3_enable
;
...
...
@@ -204,10 +204,10 @@ static void dice_proc_read(struct snd_info_entry *entry,
break
;
snd_iprintf
(
buffer
,
"rx %u:
\n
"
,
stream
);
snd_iprintf
(
buffer
,
" iso channel: %d
\n
"
,
(
int
)
buf
.
rx
.
iso
);
snd_iprintf
(
buffer
,
" sequence start: %u
\n
"
,
buf
.
rx
.
seq_start
);
snd_iprintf
(
buffer
,
" audio channels: %u
\n
"
,
buf
.
rx
.
number_audio
);
snd_iprintf
(
buffer
,
" midi ports: %u
\n
"
,
buf
.
rx
.
number_midi
);
snd_iprintf
(
buffer
,
" sequence start: %u
\n
"
,
buf
.
rx
.
seq_start
);
if
(
quadlets
>=
68
)
{
dice_proc_fixup_string
(
buf
.
rx
.
names
,
RX_NAMES_SIZE
);
snd_iprintf
(
buffer
,
" names: %s
\n
"
,
buf
.
rx
.
names
);
...
...
sound/firewire/iso-resources.c
View file @
e6826ef1
...
...
@@ -26,7 +26,7 @@
int
fw_iso_resources_init
(
struct
fw_iso_resources
*
r
,
struct
fw_unit
*
unit
)
{
r
->
channels_mask
=
~
0uLL
;
r
->
unit
=
fw_unit_get
(
unit
)
;
r
->
unit
=
unit
;
mutex_init
(
&
r
->
mutex
);
r
->
allocated
=
false
;
...
...
@@ -42,7 +42,6 @@ void fw_iso_resources_destroy(struct fw_iso_resources *r)
{
WARN_ON
(
r
->
allocated
);
mutex_destroy
(
&
r
->
mutex
);
fw_unit_put
(
r
->
unit
);
}
EXPORT_SYMBOL
(
fw_iso_resources_destroy
);
...
...
sound/pci/hda/patch_conexant.c
View file @
e6826ef1
...
...
@@ -223,6 +223,7 @@ enum {
CXT_PINCFG_LENOVO_TP410
,
CXT_PINCFG_LEMOTE_A1004
,
CXT_PINCFG_LEMOTE_A1205
,
CXT_PINCFG_COMPAQ_CQ60
,
CXT_FIXUP_STEREO_DMIC
,
CXT_FIXUP_INC_MIC_BOOST
,
CXT_FIXUP_HEADPHONE_MIC_PIN
,
...
...
@@ -660,6 +661,15 @@ static const struct hda_fixup cxt_fixups[] = {
.
type
=
HDA_FIXUP_PINS
,
.
v
.
pins
=
cxt_pincfg_lemote
,
},
[
CXT_PINCFG_COMPAQ_CQ60
]
=
{
.
type
=
HDA_FIXUP_PINS
,
.
v
.
pins
=
(
const
struct
hda_pintbl
[])
{
/* 0x17 was falsely set up as a mic, it should 0x1d */
{
0x17
,
0x400001f0
},
{
0x1d
,
0x97a70120
},
{
}
}
},
[
CXT_FIXUP_STEREO_DMIC
]
=
{
.
type
=
HDA_FIXUP_FUNC
,
.
v
.
func
=
cxt_fixup_stereo_dmic
,
...
...
@@ -769,6 +779,7 @@ static const struct hda_model_fixup cxt5047_fixup_models[] = {
};
static
const
struct
snd_pci_quirk
cxt5051_fixups
[]
=
{
SND_PCI_QUIRK
(
0x103c
,
0x360b
,
"Compaq CQ60"
,
CXT_PINCFG_COMPAQ_CQ60
),
SND_PCI_QUIRK
(
0x17aa
,
0x20f2
,
"Lenovo X200"
,
CXT_PINCFG_LENOVO_X200
),
{}
};
...
...
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