diff options
Diffstat (limited to 'sound/atmel/ac97c.c')
| -rw-r--r-- | sound/atmel/ac97c.c | 26 | 
1 files changed, 5 insertions, 21 deletions
diff --git a/sound/atmel/ac97c.c b/sound/atmel/ac97c.c index ae63d22c0f8..a04d23174dc 100644 --- a/sound/atmel/ac97c.c +++ b/sound/atmel/ac97c.c @@ -34,7 +34,6 @@  #include <linux/dw_dmac.h>  #include <mach/cpu.h> -#include <mach/gpio.h>  #ifdef CONFIG_ARCH_AT91  #include <mach/hardware.h> @@ -946,8 +945,9 @@ static int atmel_ac97c_probe(struct platform_device *pdev)  	}  	clk_enable(pclk); -	retval = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, -			THIS_MODULE, sizeof(struct atmel_ac97c), &card); +	retval = snd_card_new(&pdev->dev, SNDRV_DEFAULT_IDX1, +			      SNDRV_DEFAULT_STR1, THIS_MODULE, +			      sizeof(struct atmel_ac97c), &card);  	if (retval) {  		dev_dbg(&pdev->dev, "could not create sound card device\n");  		goto err_snd_card_new; @@ -991,8 +991,6 @@ static int atmel_ac97c_probe(struct platform_device *pdev)  		chip->reset_pin = -EINVAL;  	} -	snd_card_set_dev(card, &pdev->dev); -  	atmel_ac97c_reset(chip);  	/* Enable overrun interrupt from codec channel */ @@ -1114,8 +1112,6 @@ err_dma:  		chip->dma.tx_chan = NULL;  	}  err_ac97_bus: -	snd_card_set_dev(card, NULL); -  	if (gpio_is_valid(chip->reset_pin))  		gpio_free(chip->reset_pin); @@ -1196,13 +1192,13 @@ static int atmel_ac97c_remove(struct platform_device *pdev)  		chip->dma.tx_chan = NULL;  	} -	snd_card_set_dev(card, NULL);  	snd_card_free(card);  	return 0;  }  static struct platform_driver atmel_ac97c_driver = { +	.probe		= atmel_ac97c_probe,  	.remove		= atmel_ac97c_remove,  	.driver		= {  		.name	= "atmel_ac97c", @@ -1210,19 +1206,7 @@ static struct platform_driver atmel_ac97c_driver = {  		.pm	= ATMEL_AC97C_PM_OPS,  	},  }; - -static int __init atmel_ac97c_init(void) -{ -	return platform_driver_probe(&atmel_ac97c_driver, -			atmel_ac97c_probe); -} -module_init(atmel_ac97c_init); - -static void __exit atmel_ac97c_exit(void) -{ -	platform_driver_unregister(&atmel_ac97c_driver); -} -module_exit(atmel_ac97c_exit); +module_platform_driver(atmel_ac97c_driver);  MODULE_LICENSE("GPL");  MODULE_DESCRIPTION("Driver for Atmel AC97 controller");  | 
