* [PATCH] ASoC: Return proper error if i2c_add_driver fails
@ 2012-01-10 8:54 Axel Lin
2012-01-10 18:53 ` Mark Brown
0 siblings, 1 reply; 2+ messages in thread
From: Axel Lin @ 2012-01-10 8:54 UTC (permalink / raw)
To: alsa-devel; +Cc: Dimitris Papastamos, Mark Brown, Liam Girdwood
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/codecs/wm8523.c | 4 ++--
sound/soc/codecs/wm8711.c | 4 ++--
sound/soc/codecs/wm8737.c | 4 ++--
sound/soc/codecs/wm8962.c | 4 ++--
sound/soc/codecs/wm8991.c | 4 ++--
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/sound/soc/codecs/wm8523.c b/sound/soc/codecs/wm8523.c
index 7fea2c3..84b2ddc 100644
--- a/sound/soc/codecs/wm8523.c
+++ b/sound/soc/codecs/wm8523.c
@@ -559,7 +559,7 @@ static struct i2c_driver wm8523_i2c_driver = {
static int __init wm8523_modinit(void)
{
- int ret;
+ int ret = 0;
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
ret = i2c_add_driver(&wm8523_i2c_driver);
if (ret != 0) {
@@ -567,7 +567,7 @@ static int __init wm8523_modinit(void)
ret);
}
#endif
- return 0;
+ return ret;
}
module_init(wm8523_modinit);
diff --git a/sound/soc/codecs/wm8711.c b/sound/soc/codecs/wm8711.c
index 0b76d1d..727fb57 100644
--- a/sound/soc/codecs/wm8711.c
+++ b/sound/soc/codecs/wm8711.c
@@ -494,7 +494,7 @@ static struct i2c_driver wm8711_i2c_driver = {
static int __init wm8711_modinit(void)
{
- int ret;
+ int ret = 0;
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
ret = i2c_add_driver(&wm8711_i2c_driver);
if (ret != 0) {
@@ -509,7 +509,7 @@ static int __init wm8711_modinit(void)
ret);
}
#endif
- return 0;
+ return ret;
}
module_init(wm8711_modinit);
diff --git a/sound/soc/codecs/wm8737.c b/sound/soc/codecs/wm8737.c
index ff95e62c..9a19a44 100644
--- a/sound/soc/codecs/wm8737.c
+++ b/sound/soc/codecs/wm8737.c
@@ -728,7 +728,7 @@ static struct spi_driver wm8737_spi_driver = {
static int __init wm8737_modinit(void)
{
- int ret;
+ int ret = 0;
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
ret = i2c_add_driver(&wm8737_i2c_driver);
if (ret != 0) {
@@ -743,7 +743,7 @@ static int __init wm8737_modinit(void)
ret);
}
#endif
- return 0;
+ return ret;
}
module_init(wm8737_modinit);
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 296de4e..30bc788 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -4288,7 +4288,7 @@ static struct i2c_driver wm8962_i2c_driver = {
static int __init wm8962_modinit(void)
{
- int ret;
+ int ret = 0;
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
ret = i2c_add_driver(&wm8962_i2c_driver);
if (ret != 0) {
@@ -4296,7 +4296,7 @@ static int __init wm8962_modinit(void)
ret);
}
#endif
- return 0;
+ return ret;
}
module_init(wm8962_modinit);
diff --git a/sound/soc/codecs/wm8991.c b/sound/soc/codecs/wm8991.c
index 7ee40da..d877487 100644
--- a/sound/soc/codecs/wm8991.c
+++ b/sound/soc/codecs/wm8991.c
@@ -1402,13 +1402,13 @@ static struct i2c_driver wm8991_i2c_driver = {
static int __init wm8991_modinit(void)
{
- int ret;
+ int ret = 0;
ret = i2c_add_driver(&wm8991_i2c_driver);
if (ret != 0) {
printk(KERN_ERR "Failed to register WM8991 I2C driver: %d\n",
ret);
}
- return 0;
+ return ret;
}
module_init(wm8991_modinit);
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-10 18:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-10 8:54 [PATCH] ASoC: Return proper error if i2c_add_driver fails Axel Lin
2012-01-10 18:53 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).