diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-09-29 11:03:24 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-09-30 10:36:12 +0200 |
commit | e5347f9ab7cdafc2dbc0d4f7f30204293be71d8e (patch) | |
tree | 9608f5ef7fc971ed7d994dbf21bf4ece5f089868 /sound/pci/ctxfi/ctamixer.c | |
parent | ALSA: ctxfi: added reference of snd_card (diff) | |
download | linux-e5347f9ab7cdafc2dbc0d4f7f30204293be71d8e.tar.xz linux-e5347f9ab7cdafc2dbc0d4f7f30204293be71d8e.zip |
ALSA: ctxfi: initialized snd_card
initialized the reference of snd_card which was added to the various
structures through the previous patch of the series.
these references of snd_card will be used in a later patch to convert
the pr_* macros to dev_*
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/ctamixer.c')
-rw-r--r-- | sound/pci/ctxfi/ctamixer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/ctxfi/ctamixer.c b/sound/pci/ctxfi/ctamixer.c index 4671cbe7b397..4d389c330978 100644 --- a/sound/pci/ctxfi/ctamixer.c +++ b/sound/pci/ctxfi/ctamixer.c @@ -314,6 +314,7 @@ int amixer_mgr_create(struct hw *hw, struct amixer_mgr **ramixer_mgr) amixer_mgr->get_amixer = get_amixer_rsc; amixer_mgr->put_amixer = put_amixer_rsc; + amixer_mgr->card = hw->card; *ramixer_mgr = amixer_mgr; @@ -467,6 +468,7 @@ int sum_mgr_create(struct hw *hw, struct sum_mgr **rsum_mgr) sum_mgr->get_sum = get_sum_rsc; sum_mgr->put_sum = put_sum_rsc; + sum_mgr->card = hw->card; *rsum_mgr = sum_mgr; |