diff options
Diffstat (limited to 'sound/aoa')
| -rw-r--r-- | sound/aoa/aoa.h | 2 | ||||
| -rw-r--r-- | sound/aoa/codecs/onyx.c | 4 | ||||
| -rw-r--r-- | sound/aoa/codecs/tas.c | 2 | ||||
| -rw-r--r-- | sound/aoa/codecs/toonie.c | 2 | ||||
| -rw-r--r-- | sound/aoa/core/alsa.c | 7 | ||||
| -rw-r--r-- | sound/aoa/core/gpio-feature.c | 3 | ||||
| -rw-r--r-- | sound/aoa/fabrics/layout.c | 4 | ||||
| -rw-r--r-- | sound/aoa/soundbus/i2sbus/core.c | 2 | 
8 files changed, 14 insertions, 12 deletions
diff --git a/sound/aoa/aoa.h b/sound/aoa/aoa.h index e08789484e3..34c668f2779 100644 --- a/sound/aoa/aoa.h +++ b/sound/aoa/aoa.h @@ -116,7 +116,7 @@ struct aoa_card {  	struct snd_card *alsa_card;  }; -extern int aoa_snd_device_new(snd_device_type_t type, +extern int aoa_snd_device_new(enum snd_device_type type,  	void * device_data, struct snd_device_ops * ops);  extern struct snd_card *aoa_get_card(void);  extern int aoa_snd_ctl_add(struct snd_kcontrol* control); diff --git a/sound/aoa/codecs/onyx.c b/sound/aoa/codecs/onyx.c index 4cedc6950d7..401107b85d3 100644 --- a/sound/aoa/codecs/onyx.c +++ b/sound/aoa/codecs/onyx.c @@ -241,7 +241,7 @@ static struct snd_kcontrol_new inputgain_control = {  static int onyx_snd_capture_source_info(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_info *uinfo)  { -	static char *texts[] = { "Line-In", "Microphone" }; +	static const char * const texts[] = { "Line-In", "Microphone" };  	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;  	uinfo->count = 1; @@ -889,7 +889,7 @@ static int onyx_init_codec(struct aoa_codec *codec)  		return -ENODEV;  	} -	if (aoa_snd_device_new(SNDRV_DEV_LOWLEVEL, onyx, &ops)) { +	if (aoa_snd_device_new(SNDRV_DEV_CODEC, onyx, &ops)) {  		printk(KERN_ERR PFX "failed to create onyx snd device!\n");  		return -ENODEV;  	} diff --git a/sound/aoa/codecs/tas.c b/sound/aoa/codecs/tas.c index c491ae0f749..cf3c6303b7e 100644 --- a/sound/aoa/codecs/tas.c +++ b/sound/aoa/codecs/tas.c @@ -826,7 +826,7 @@ static int tas_init_codec(struct aoa_codec *codec)  		return -ENODEV;  	} -	if (aoa_snd_device_new(SNDRV_DEV_LOWLEVEL, tas, &ops)) { +	if (aoa_snd_device_new(SNDRV_DEV_CODEC, tas, &ops)) {  		printk(KERN_ERR PFX "failed to create tas snd device!\n");  		return -ENODEV;  	} diff --git a/sound/aoa/codecs/toonie.c b/sound/aoa/codecs/toonie.c index 69d2cb601f2..7e8c3417cd8 100644 --- a/sound/aoa/codecs/toonie.c +++ b/sound/aoa/codecs/toonie.c @@ -92,7 +92,7 @@ static int toonie_init_codec(struct aoa_codec *codec)  	if (toonie->codec.connected != 1)  		return -ENOTCONN; -	if (aoa_snd_device_new(SNDRV_DEV_LOWLEVEL, toonie, &ops)) { +	if (aoa_snd_device_new(SNDRV_DEV_CODEC, toonie, &ops)) {  		printk(KERN_ERR PFX "failed to create toonie snd device!\n");  		return -ENODEV;  	} diff --git a/sound/aoa/core/alsa.c b/sound/aoa/core/alsa.c index 0fa3855b479..4a7e4e6b746 100644 --- a/sound/aoa/core/alsa.c +++ b/sound/aoa/core/alsa.c @@ -23,13 +23,12 @@ int aoa_alsa_init(char *name, struct module *mod, struct device *dev)  		/* cannot be EEXIST due to usage in aoa_fabric_register */  		return -EBUSY; -	err = snd_card_create(index, name, mod, sizeof(struct aoa_card), -			      &alsa_card); +	err = snd_card_new(dev, index, name, mod, sizeof(struct aoa_card), +			   &alsa_card);  	if (err < 0)  		return err;  	aoa_card = alsa_card->private_data;  	aoa_card->alsa_card = alsa_card; -	alsa_card->dev = dev;  	strlcpy(alsa_card->driver, "AppleOnbdAudio", sizeof(alsa_card->driver));  	strlcpy(alsa_card->shortname, name, sizeof(alsa_card->shortname));  	strlcpy(alsa_card->longname, name, sizeof(alsa_card->longname)); @@ -60,7 +59,7 @@ void aoa_alsa_cleanup(void)  	}  } -int aoa_snd_device_new(snd_device_type_t type, +int aoa_snd_device_new(enum snd_device_type type,  		       void * device_data, struct snd_device_ops * ops)  {  	struct snd_card *card = aoa_get_card(); diff --git a/sound/aoa/core/gpio-feature.c b/sound/aoa/core/gpio-feature.c index faa31749054..f34153962d0 100644 --- a/sound/aoa/core/gpio-feature.c +++ b/sound/aoa/core/gpio-feature.c @@ -10,8 +10,9 @@   * registers.   */ -#include <asm/pmac_feature.h> +#include <linux/of_irq.h>  #include <linux/interrupt.h> +#include <asm/pmac_feature.h>  #include "../aoa.h"  /* TODO: these are lots of global variables diff --git a/sound/aoa/fabrics/layout.c b/sound/aoa/fabrics/layout.c index 61ab640e195..9dc5806d23d 100644 --- a/sound/aoa/fabrics/layout.c +++ b/sound/aoa/fabrics/layout.c @@ -644,7 +644,7 @@ static int n##_control_put(struct snd_kcontrol *kcontrol,		\  			   struct snd_ctl_elem_value *ucontrol)		\  {									\  	struct gpio_runtime *gpio = snd_kcontrol_chip(kcontrol);	\ -	if (gpio->methods && gpio->methods->get_##n)			\ +	if (gpio->methods && gpio->methods->set_##n)			\  		gpio->methods->set_##n(gpio,				\  			!!ucontrol->value.integer.value[0]);		\  	return 1;							\ @@ -1135,7 +1135,7 @@ static int aoa_fabric_layout_resume(struct soundbus_dev *sdev)  {  	struct layout_dev *ldev = dev_get_drvdata(&sdev->ofdev.dev); -	if (ldev->gpio.methods && ldev->gpio.methods->all_amps_off) +	if (ldev->gpio.methods && ldev->gpio.methods->all_amps_restore)  		ldev->gpio.methods->all_amps_restore(&ldev->gpio);  	return 0; diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c index 15e76131b50..467836057ee 100644 --- a/sound/aoa/soundbus/i2sbus/core.c +++ b/sound/aoa/soundbus/i2sbus/core.c @@ -11,6 +11,8 @@  #include <linux/pci.h>  #include <linux/interrupt.h>  #include <linux/dma-mapping.h> +#include <linux/of_address.h> +#include <linux/of_irq.h>  #include <sound/core.h>  | 
