aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/tegra20_das.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/tegra/tegra20_das.c')
-rw-r--r--sound/soc/tegra/tegra20_das.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/tegra/tegra20_das.c b/sound/soc/tegra/tegra20_das.c
index 49653375970b..654318483877 100644
--- a/sound/soc/tegra/tegra20_das.c
+++ b/sound/soc/tegra/tegra20_das.c
@@ -131,7 +131,7 @@ static const struct regmap_config tegra20_das_regmap_config = {
131 .cache_type = REGCACHE_RBTREE, 131 .cache_type = REGCACHE_RBTREE,
132}; 132};
133 133
134static int __devinit tegra20_das_probe(struct platform_device *pdev) 134static int tegra20_das_probe(struct platform_device *pdev)
135{ 135{
136 struct resource *res, *region; 136 struct resource *res, *region;
137 void __iomem *regs; 137 void __iomem *regs;
@@ -200,7 +200,7 @@ err:
200 return ret; 200 return ret;
201} 201}
202 202
203static int __devexit tegra20_das_remove(struct platform_device *pdev) 203static int tegra20_das_remove(struct platform_device *pdev)
204{ 204{
205 if (!das) 205 if (!das)
206 return -ENODEV; 206 return -ENODEV;
@@ -217,7 +217,7 @@ static const struct of_device_id tegra20_das_of_match[] = {
217 217
218static struct platform_driver tegra20_das_driver = { 218static struct platform_driver tegra20_das_driver = {
219 .probe = tegra20_das_probe, 219 .probe = tegra20_das_probe,
220 .remove = __devexit_p(tegra20_das_remove), 220 .remove = tegra20_das_remove,
221 .driver = { 221 .driver = {
222 .name = DRV_NAME, 222 .name = DRV_NAME,
223 .owner = THIS_MODULE, 223 .owner = THIS_MODULE,