Commit 7f21b282 authored by Dirk Behme's avatar Dirk Behme Committed by Tony Lindgren

ARM: OMAP: Remove errors and warnings and make omap-aic23.c compile again

sound/arm/omap-aic23.c:661: error: structure has no member named
pm_private_data'
sound/arm/omap-aic23.c:772: warning: implicit declaration of function
snd_card_set_pm_callback'
Note: Needs "Fix clk_get_usecount() warning" patch

Signed-off-by: Dirk Behme <dirk.behme_at_de.bosch.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 9a1914c6
...@@ -59,6 +59,7 @@ ...@@ -59,6 +59,7 @@
#include <asm/arch/dma.h> #include <asm/arch/dma.h>
#include <asm/arch/aic23.h> #include <asm/arch/aic23.h>
#include <asm/arch/mcbsp.h> #include <asm/arch/mcbsp.h>
#include <asm/arch/clock.h>
#include <sound/core.h> #include <sound/core.h>
#include <sound/pcm.h> #include <sound/pcm.h>
...@@ -658,7 +659,7 @@ static int __init snd_card_omap_aic23_pcm(struct snd_card_omap_aic23 ...@@ -658,7 +659,7 @@ static int __init snd_card_omap_aic23_pcm(struct snd_card_omap_aic23
static int snd_omap_aic23_suspend(snd_card_t * card, pm_message_t state) static int snd_omap_aic23_suspend(snd_card_t * card, pm_message_t state)
{ {
struct snd_card_omap_aic23 *chip = card->pm_private_data; struct snd_card_omap_aic23 *chip = card->private_data;
ADEBUG(); ADEBUG();
if (chip->card->power_state != SNDRV_CTL_POWER_D3hot) { if (chip->card->power_state != SNDRV_CTL_POWER_D3hot) {
...@@ -677,7 +678,7 @@ static int snd_omap_aic23_suspend(snd_card_t * card, pm_message_t state) ...@@ -677,7 +678,7 @@ static int snd_omap_aic23_suspend(snd_card_t * card, pm_message_t state)
*/ */
static int snd_omap_aic23_resume(snd_card_t * card) static int snd_omap_aic23_resume(snd_card_t * card)
{ {
struct snd_card_omap_aic23 *chip = card->pm_private_data; struct snd_card_omap_aic23 *chip = card->private_data;
ADEBUG(); ADEBUG();
if (chip->card->power_state != SNDRV_CTL_POWER_D0) { if (chip->card->power_state != SNDRV_CTL_POWER_D0) {
...@@ -860,14 +861,13 @@ static int __init snd_omap_aic23_probe(struct platform_device *pdev) ...@@ -860,14 +861,13 @@ static int __init snd_omap_aic23_probe(struct platform_device *pdev)
if ((err = snd_card_omap_aic23_pcm(omap_aic23, 0)) < 0) if ((err = snd_card_omap_aic23_pcm(omap_aic23, 0)) < 0)
goto nodev; goto nodev;
snd_card_set_pm_callback(card, snd_omap_aic23_suspend,
snd_omap_aic23_resume, omap_aic23);
strcpy(card->driver, "AIC23"); strcpy(card->driver, "AIC23");
strcpy(card->shortname, "OSK AIC23"); strcpy(card->shortname, "OSK AIC23");
sprintf(card->longname, "OMAP OSK with AIC23"); sprintf(card->longname, "OMAP OSK with AIC23");
snd_omap_init_mixer(); snd_omap_init_mixer();
snd_card_set_dev(card, &pdev->dev);
if ((err = snd_card_register(card)) == 0) { if ((err = snd_card_register(card)) == 0) {
printk(KERN_INFO "OSK audio support initialized\n"); printk(KERN_INFO "OSK audio support initialized\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment