linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/5] sound: pci: ctxfi: added reference of snd_card
@ 2014-09-21 16:03 Sudip Mukherjee
  2014-09-21 16:03 ` [PATCH v3 2/5] sound: pci: ctxfi: ctatc.c: added reference to card Sudip Mukherjee
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Sudip Mukherjee @ 2014-09-21 16:03 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai; +Cc: Sudip Mukherjee, alsa-devel, linux-kernel

added and initialized a pointer of snd_card in the struct hw to get a reference of
the card in other functions

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
 sound/pci/ctxfi/ctatc.c      | 1 +
 sound/pci/ctxfi/cthardware.h | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c
index d92a08c..b21eda4 100644
--- a/sound/pci/ctxfi/ctatc.c
+++ b/sound/pci/ctxfi/ctatc.c
@@ -1333,6 +1333,7 @@ static int atc_create_hw_devs(struct ct_atc *atc)
 		pr_err("Failed to create hw obj!!!\n");
 		return err;
 	}
+	hw->card = atc->card;
 	atc->hw = hw;
 
 	/* Initialize card hardware. */
diff --git a/sound/pci/ctxfi/cthardware.h b/sound/pci/ctxfi/cthardware.h
index 5977e9a..940bbd0 100644
--- a/sound/pci/ctxfi/cthardware.h
+++ b/sound/pci/ctxfi/cthardware.h
@@ -20,6 +20,7 @@
 
 #include <linux/types.h>
 #include <linux/pci.h>
+#include <sound/core.h>
 
 enum CHIPTYP {
 	ATC20K1,
@@ -184,6 +185,7 @@ struct hw {
 	void *irq_callback_data;
 
 	struct pci_dev *pci;	/* the pci kernel structure of this card */
+	struct snd_card *card; /* pointer to this card */
 	int irq;
 	unsigned long io_base;
 	unsigned long mem_base;
-- 
1.8.1.2


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2014-09-22  8:46 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-21 16:03 [PATCH v3 1/5] sound: pci: ctxfi: added reference of snd_card Sudip Mukherjee
2014-09-21 16:03 ` [PATCH v3 2/5] sound: pci: ctxfi: ctatc.c: added reference to card Sudip Mukherjee
2014-09-21 16:03 ` [PATCH v3 3/5] sound: pci: ctxfi: pr_* replaced with dev_* Sudip Mukherjee
2014-09-22  7:08   ` Takashi Iwai
2014-09-22  8:08     ` Sudip Mukherjee
2014-09-21 16:03 ` [PATCH v3 4/5] sound: pci: ctxfi: cthw20k2.c: sparse warning of incorrect type Sudip Mukherjee
2014-09-22  7:10   ` Takashi Iwai
2014-09-22  8:09     ` Sudip Mukherjee
2014-09-21 16:03 ` [PATCH v3 5/5] sound: pci: ctxfi: cthw20k1.c: " Sudip Mukherjee
2014-09-22  7:04 ` [PATCH v3 1/5] sound: pci: ctxfi: added reference of snd_card Takashi Iwai
2014-09-22  8:15   ` Sudip Mukherjee
2014-09-22  8:21     ` Takashi Iwai
2014-09-22  8:46       ` Sudip Mukherjee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).