public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ALSA AUDIO: Use struct platform driver
@ 2005-12-01 10:49 Komal Shah
  2005-12-02  0:42 ` Tony Lindgren
  0 siblings, 1 reply; 2+ messages in thread
From: Komal Shah @ 2005-12-01 10:49 UTC (permalink / raw)
  To: linux-omap-open-source

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

Tony,

Attached patch uses struct platform_driver.

---Komal Shah
http://komalshah.blogspot.com/


		
__________________________________ 
Yahoo! Music Unlimited 
Access over 1 million songs. Try it free. 
http://music.yahoo.com/unlimited/

[-- Attachment #2: pat700073264 --]
[-- Type: text/plain, Size: 3207 bytes --]

Subject: [PATCH 8/10] alsa/omap-audio: Use struct platform_driver
Signed-off-by: Komal Shah <komal_shah802003@yahoo.com>

---

 sound/arm/omap-aic23.c |   29 +++++++++++++++--------------
 1 files changed, 15 insertions(+), 14 deletions(-)

applies-to: d0304cd459a90d940ed57b674f4538e8b84ebd8b
9779c089dc1deaa65449d65f88d537592867c6ae
diff --git a/sound/arm/omap-aic23.c b/sound/arm/omap-aic23.c
index 960108f..c6516f8 100644
--- a/sound/arm/omap-aic23.c
+++ b/sound/arm/omap-aic23.c
@@ -668,9 +668,9 @@ static int snd_omap_aic23_resume(snd_car
 /*
  * Driver suspend/resume - calls alsa functions. Some hints from aaci.c
  */
-static int omap_aic23_suspend(struct device *dev, pm_message_t state)
+static int omap_aic23_suspend(struct platform_device *pdev, pm_message_t state)
 {
-	snd_card_t *card = dev_get_drvdata(dev);
+	snd_card_t *card = platform_get_drvdata(pdev);
 	
 	if (card->power_state != SNDRV_CTL_POWER_D3hot) {
 		snd_omap_aic23_suspend(card, PMSG_SUSPEND);
@@ -678,9 +678,9 @@ static int omap_aic23_suspend(struct dev
 	return 0;
 }
 
-static int omap_aic23_resume(struct device *dev)
+static int omap_aic23_resume(struct platform_device *pdev)
 {
-	snd_card_t *card = dev_get_drvdata(dev);
+	snd_card_t *card = platform_get_drvdata(pdev);
 
 	if (card->power_state != SNDRV_CTL_POWER_D0) {
 		snd_omap_aic23_resume(card);
@@ -801,7 +801,7 @@ int omap_aic23_clock_off(void)
 /* 
  *  Inits alsa soudcard structure
  */
-static int __init snd_omap_aic23_probe(struct device *dev)
+static int __init snd_omap_aic23_probe(struct platform_device *pdev)
 {
 	int err = 0;
 	snd_card_t *card;
@@ -847,7 +847,7 @@ static int __init snd_omap_aic23_probe(s
 	
 	if ((err = snd_card_register(card)) == 0) {
 		printk(KERN_INFO "OSK audio support initialized\n");
-		dev_set_drvdata(dev, card); 
+		platform_set_drvdata(pdev, card); 
 		return 0;
 	}
 	
@@ -857,9 +857,9 @@ nodev:
 	return err;
 }
 
-static int snd_omap_aic23_remove(struct device *dev)
+static int snd_omap_aic23_remove(struct platform_device *pdev)
 {
-	snd_card_t *card = dev_get_drvdata(dev);
+	snd_card_t *card = platform_get_drvdata(pdev);
 	struct snd_card_omap_aic23 *chip = card->private_data;
 	
 	snd_card_free(card);
@@ -868,19 +868,20 @@ static int snd_omap_aic23_remove(struct 
 	card->private_data = NULL;
 	kfree(chip);
 	
-	dev_set_drvdata(dev, NULL); 
+	platform_set_drvdata(pdev, NULL); 
 	
 	return 0;
 	
 }
 
-static struct device_driver omap_alsa_driver = {
-	.name =		"omap_mcbsp",
-	.bus =		&platform_bus_type,
+static struct platform_driver omap_alsa_driver = {
 	.probe =	snd_omap_aic23_probe,
 	.remove =	snd_omap_aic23_remove,
 	.suspend =	omap_aic23_suspend, 
 	.resume =	omap_aic23_resume, 
+	.driver = {
+		.name =	"omap_mcbsp",
+	},
 };
 
 static int __init omap_aic23_init(void)
@@ -888,7 +889,7 @@ static int __init omap_aic23_init(void)
 	int err;
 	ADEBUG();
 
-	err = driver_register(&omap_alsa_driver);
+	err = platform_driver_register(&omap_alsa_driver);
 
 	return err;
 }
@@ -897,7 +898,7 @@ static void __exit omap_aic23_exit(void)
 {
 	ADEBUG();
 	
-	driver_unregister(&omap_alsa_driver);
+	platform_driver_unregister(&omap_alsa_driver);
 }
 
 module_init(omap_aic23_init);
---
0.99.9.GIT

[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH] ALSA AUDIO: Use struct platform driver
  2005-12-01 10:49 [PATCH] ALSA AUDIO: Use struct platform driver Komal Shah
@ 2005-12-02  0:42 ` Tony Lindgren
  0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2005-12-02  0:42 UTC (permalink / raw)
  To: Komal Shah; +Cc: linux-omap-open-source

* Komal Shah <komal_shah802003@yahoo.com> [051201 02:50]:
> Tony,
> 
> Attached patch uses struct platform_driver.

Pushing today.

Tony

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

end of thread, other threads:[~2005-12-02  0:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-01 10:49 [PATCH] ALSA AUDIO: Use struct platform driver Komal Shah
2005-12-02  0:42 ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox