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
Kirill Smelkov
linux
Commits
efc2f8de
Commit
efc2f8de
authored
Nov 21, 2012
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALSA: hda - Use standard helper functions in patch_hdmi.c
Signed-off-by:
Takashi Iwai
<
tiwai@suse.de
>
parent
b0db6063
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
sound/pci/hda/patch_hdmi.c
sound/pci/hda/patch_hdmi.c
+3
-4
No files found.
sound/pci/hda/patch_hdmi.c
View file @
efc2f8de
...
...
@@ -1193,12 +1193,11 @@ static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
struct
hdmi_spec_per_pin
*
per_pin
;
int
err
;
caps
=
snd_hda_
param_read
(
codec
,
pin_nid
,
AC_PAR_PIN_CAP
);
caps
=
snd_hda_
query_pin_caps
(
codec
,
pin_nid
);
if
(
!
(
caps
&
(
AC_PINCAP_HDMI
|
AC_PINCAP_DP
)))
return
0
;
config
=
snd_hda_codec_read
(
codec
,
pin_nid
,
0
,
AC_VERB_GET_CONFIG_DEFAULT
,
0
);
config
=
snd_hda_codec_get_pincfg
(
codec
,
pin_nid
);
if
(
get_defcfg_connect
(
config
)
==
AC_JACK_PORT_NONE
)
return
0
;
...
...
@@ -1272,7 +1271,7 @@ static int hdmi_parse_codec(struct hda_codec *codec)
unsigned
int
caps
;
unsigned
int
type
;
caps
=
snd_hda_param_read
(
codec
,
nid
,
AC_PAR_AUDIO_WIDGET_CAP
);
caps
=
get_wcaps
(
codec
,
nid
);
type
=
get_wcaps_type
(
caps
);
if
(
!
(
caps
&
AC_WCAP_DIGITAL
))
...
...
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