diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-09-11 12:22:03 (GMT) |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-09-11 12:22:03 (GMT) |
commit | 81965f1f58ce120a616f2fdd0594916fa183c5fc (patch) | |
tree | d08cec0c0f7548616b3c88eee9e550e24e36bff3 /sound/pci/hda/hda_jack.c | |
parent | 62f949bf6bf6ceb44872c44ef3913a96d93fb5d4 (diff) | |
download | linux-81965f1f58ce120a616f2fdd0594916fa183c5fc.tar.xz |
ALSA: hda - Make snd_hda_jack_tbl_new() static
It's called only in hda_jack.c, so make it local.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_jack.c')
-rw-r--r-- | sound/pci/hda/hda_jack.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_jack.c b/sound/pci/hda/hda_jack.c index 9c8f24f..7f33279 100644 --- a/sound/pci/hda/hda_jack.c +++ b/sound/pci/hda/hda_jack.c @@ -94,7 +94,7 @@ EXPORT_SYMBOL_GPL(snd_hda_jack_tbl_get_from_tag); /** * snd_hda_jack_tbl_new - create a jack-table entry for the given NID */ -struct hda_jack_tbl * +static struct hda_jack_tbl * snd_hda_jack_tbl_new(struct hda_codec *codec, hda_nid_t nid) { struct hda_jack_tbl *jack = snd_hda_jack_tbl_get(codec, nid); @@ -108,7 +108,6 @@ snd_hda_jack_tbl_new(struct hda_codec *codec, hda_nid_t nid) jack->tag = codec->jacktbl.used; return jack; } -EXPORT_SYMBOL_GPL(snd_hda_jack_tbl_new); void snd_hda_jack_tbl_clear(struct hda_codec *codec) { |