All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Subhransu S. Prusty" <subhransu.s.prusty@intel.com>
To: alsa-devel@alsa-project.org
Cc: tiwai@suse.de, lgirdwood@gmail.com, patches.audio@intel.com,
	broonie@kernel.org, Jeeja KP <jeeja.kp@intel.com>,
	Vinod Koul <vinod.koul@intel.com>,
	"Subhransu S. Prusty" <subhransu.s.prusty@intel.com>
Subject: [RFC 02/11] ALSA: hda - Add generic helper function to register/unregister driver
Date: Sun, 12 Apr 2015 18:06:09 +0530	[thread overview]
Message-ID: <1428842178-7105-3-git-send-email-subhransu.s.prusty@intel.com> (raw)
In-Reply-To: <1428842178-7105-1-git-send-email-subhransu.s.prusty@intel.com>

From: Jeeja KP <jeeja.kp@intel.com>

ASOC HD codec drivers will use the generic functions
to register/unregister driver

Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
---
 include/sound/hdaudio.h |  3 +++
 sound/hda/hdac_bus.c    | 21 +++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/include/sound/hdaudio.h b/include/sound/hdaudio.h
index 3628a09..b63cd03 100644
--- a/include/sound/hdaudio.h
+++ b/include/sound/hdaudio.h
@@ -153,6 +153,9 @@ struct hdac_driver {
 
 #define drv_to_hdac_driver(_drv) container_of(_drv, struct hdac_driver, driver)
 
+int snd_hdac_driver_register(struct hdac_driver *drv);
+void snd_hdac_driver_unregister(struct hdac_driver *drv);
+
 /*
  * HD-audio bus base driver
  */
diff --git a/sound/hda/hdac_bus.c b/sound/hda/hdac_bus.c
index f0ee295..4ecb4ec 100644
--- a/sound/hda/hdac_bus.c
+++ b/sound/hda/hdac_bus.c
@@ -219,3 +219,24 @@ int snd_hdac_bus_match_id(struct hdac_device *dev,
 	return 0;
 }
 EXPORT_SYMBOL_GPL(snd_hdac_bus_match_id);
+
+/**
+ * snd_hdac_driver_register - register a driver for hda devices
+ * @drv: hdac driver structure
+ */
+int snd_hdac_driver_register(struct hdac_driver *drv)
+{
+	drv->driver.bus = &snd_hda_bus_type;
+	return driver_register(&drv->driver);
+}
+EXPORT_SYMBOL_GPL(snd_hdac_driver_register);
+
+/**
+ * snd_hdac_driver_unregister - unregister a driver for hda devices
+ * @drv: hdac driver structure
+ */
+void snd_hdac_driver_unregister(struct hdac_driver *drv)
+{
+	driver_unregister(&drv->driver);
+}
+EXPORT_SYMBOL_GPL(snd_hdac_driver_unregister);
-- 
1.9.0

  parent reply	other threads:[~2015-04-12 13:05 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-12 12:36 [RFC 00/11] ASoC: hda - Add ASoC Skylake HD audio driver Subhransu S. Prusty
2015-04-12 12:36 ` [RFC 01/11] ALSA: hda - add id table support for hdac device/driver Subhransu S. Prusty
2015-04-13 11:46   ` Takashi Iwai
2015-04-14  4:34     ` Vinod Koul
2015-04-12 12:36 ` Subhransu S. Prusty [this message]
2015-04-13 11:50   ` [RFC 02/11] ALSA: hda - Add generic helper function to register/unregister driver Takashi Iwai
2015-04-12 12:36 ` [RFC 03/11] ALSA: hda - add generic function to unregister all devices on bus Subhransu S. Prusty
2015-04-13 11:54   ` Takashi Iwai
2015-04-14  4:36     ` Vinod Koul
2015-04-12 12:36 ` [RFC 04/11] ALSA: hda: corrected snd_hdac_stream_init() declaration Subhransu S. Prusty
2015-04-13 11:52   ` Takashi Iwai
2015-04-14  4:36     ` Vinod Koul
2015-04-12 12:36 ` [RFC 05/11] ALSA: hda - exported link_reset enter/exit Subhransu S. Prusty
2015-04-13 12:04   ` Takashi Iwai
2015-04-14  4:37     ` Vinod Koul
2015-04-12 12:36 ` [RFC 06/11] ALSA: hda - moved alloc/free stream pages function to controller library Subhransu S. Prusty
2015-04-12 12:36 ` [RFC 07/11] ALSA: hda - add generic functions to set hdac stream params Subhransu S. Prusty
2015-04-13 12:04   ` Takashi Iwai
2015-04-14  4:38     ` Vinod Koul
2015-04-12 12:36 ` [RFC 08/11] ASoC: hda - add Skylake platform driver Subhransu S. Prusty
2015-04-12 12:36 ` [RFC 09/11] ALSA: hda - moved interrupt handler to controller library Subhransu S. Prusty
2015-04-13 12:01   ` Takashi Iwai
2015-04-14  4:43     ` Vinod Koul
2015-04-14  5:22       ` Takashi Iwai
2015-04-12 12:36 ` [RFC 10/11] ASoC: hda - add Skylake HD audio driver Subhransu S. Prusty
2015-04-13 12:00   ` Takashi Iwai
2015-04-14  4:44     ` Vinod Koul
2015-04-12 12:36 ` [RFC 11/11] ASoC: hda - enable ASoC " Subhransu S. Prusty
2015-04-13 12:01   ` Takashi Iwai
2015-04-14  4:46     ` Vinod Koul
2015-04-14  5:23       ` Takashi Iwai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1428842178-7105-3-git-send-email-subhransu.s.prusty@intel.com \
    --to=subhransu.s.prusty@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=jeeja.kp@intel.com \
    --cc=lgirdwood@gmail.com \
    --cc=patches.audio@intel.com \
    --cc=tiwai@suse.de \
    --cc=vinod.koul@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.