Re: [KJ][PATCH] i2c: SPIN_LOCK_UNLOCKED cleanup

2007-04-19 Thread Jean Delvare
On Thu, 19 Apr 2007 09:35:58 +0530, Milind Arun Choudhary wrote:
> SPIN_LOCK_UNLOCKED cleanup,use __SPIN_LOCK_UNLOCKED instead 
> 
> Signed-off-by: Milind Arun Choudhary <[EMAIL PROTECTED]>
> 
> ---
>  i2c-pxa.c |2 +-
>  i2c-s3c2410.c |2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
> index 14e83d0..d5d44ed 100644
> --- a/drivers/i2c/busses/i2c-pxa.c
> +++ b/drivers/i2c/busses/i2c-pxa.c
> @@ -825,7 +825,7 @@ static const struct i2c_algorithm i2c_pxa_algorithm = {
>  };
>  
>  static struct pxa_i2c i2c_pxa = {
> - .lock   = SPIN_LOCK_UNLOCKED,
> + .lock   = __SPIN_LOCK_UNLOCKED(i2c_pxa.lock),
>   .adap   = {
>   .owner  = THIS_MODULE,
>   .algo   = _pxa_algorithm,
> diff --git a/drivers/i2c/busses/i2c-s3c2410.c 
> b/drivers/i2c/busses/i2c-s3c2410.c
> index 556f244..3eb5958 100644
> --- a/drivers/i2c/busses/i2c-s3c2410.c
> +++ b/drivers/i2c/busses/i2c-s3c2410.c
> @@ -570,7 +570,7 @@ static const struct i2c_algorithm s3c24xx_i2c_algorithm = 
> {
>  };
>  
>  static struct s3c24xx_i2c s3c24xx_i2c = {
> - .lock   = SPIN_LOCK_UNLOCKED,
> + .lock   = __SPIN_LOCK_UNLOCKED(s3c24xx_i2c.lock),
>   .wait   = __WAIT_QUEUE_HEAD_INITIALIZER(s3c24xx_i2c.wait),
>   .adap   = {
>   .name   = "s3c2410-i2c",
> 

Applied, thanks.

-- 
Jean Delvare
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [KJ][PATCH] i2c: SPIN_LOCK_UNLOCKED cleanup

2007-04-19 Thread Jean Delvare
On Thu, 19 Apr 2007 09:35:58 +0530, Milind Arun Choudhary wrote:
 SPIN_LOCK_UNLOCKED cleanup,use __SPIN_LOCK_UNLOCKED instead 
 
 Signed-off-by: Milind Arun Choudhary [EMAIL PROTECTED]
 
 ---
  i2c-pxa.c |2 +-
  i2c-s3c2410.c |2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
 index 14e83d0..d5d44ed 100644
 --- a/drivers/i2c/busses/i2c-pxa.c
 +++ b/drivers/i2c/busses/i2c-pxa.c
 @@ -825,7 +825,7 @@ static const struct i2c_algorithm i2c_pxa_algorithm = {
  };
  
  static struct pxa_i2c i2c_pxa = {
 - .lock   = SPIN_LOCK_UNLOCKED,
 + .lock   = __SPIN_LOCK_UNLOCKED(i2c_pxa.lock),
   .adap   = {
   .owner  = THIS_MODULE,
   .algo   = i2c_pxa_algorithm,
 diff --git a/drivers/i2c/busses/i2c-s3c2410.c 
 b/drivers/i2c/busses/i2c-s3c2410.c
 index 556f244..3eb5958 100644
 --- a/drivers/i2c/busses/i2c-s3c2410.c
 +++ b/drivers/i2c/busses/i2c-s3c2410.c
 @@ -570,7 +570,7 @@ static const struct i2c_algorithm s3c24xx_i2c_algorithm = 
 {
  };
  
  static struct s3c24xx_i2c s3c24xx_i2c = {
 - .lock   = SPIN_LOCK_UNLOCKED,
 + .lock   = __SPIN_LOCK_UNLOCKED(s3c24xx_i2c.lock),
   .wait   = __WAIT_QUEUE_HEAD_INITIALIZER(s3c24xx_i2c.wait),
   .adap   = {
   .name   = s3c2410-i2c,
 

Applied, thanks.

-- 
Jean Delvare
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[KJ][PATCH] i2c: SPIN_LOCK_UNLOCKED cleanup

2007-04-18 Thread Milind Arun Choudhary
SPIN_LOCK_UNLOCKED cleanup,use __SPIN_LOCK_UNLOCKED instead 

Signed-off-by: Milind Arun Choudhary <[EMAIL PROTECTED]>

---
 i2c-pxa.c |2 +-
 i2c-s3c2410.c |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
index 14e83d0..d5d44ed 100644
--- a/drivers/i2c/busses/i2c-pxa.c
+++ b/drivers/i2c/busses/i2c-pxa.c
@@ -825,7 +825,7 @@ static const struct i2c_algorithm i2c_pxa_algorithm = {
 };
 
 static struct pxa_i2c i2c_pxa = {
-   .lock   = SPIN_LOCK_UNLOCKED,
+   .lock   = __SPIN_LOCK_UNLOCKED(i2c_pxa.lock),
.adap   = {
.owner  = THIS_MODULE,
.algo   = _pxa_algorithm,
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c
index 556f244..3eb5958 100644
--- a/drivers/i2c/busses/i2c-s3c2410.c
+++ b/drivers/i2c/busses/i2c-s3c2410.c
@@ -570,7 +570,7 @@ static const struct i2c_algorithm s3c24xx_i2c_algorithm = {
 };
 
 static struct s3c24xx_i2c s3c24xx_i2c = {
-   .lock   = SPIN_LOCK_UNLOCKED,
+   .lock   = __SPIN_LOCK_UNLOCKED(s3c24xx_i2c.lock),
.wait   = __WAIT_QUEUE_HEAD_INITIALIZER(s3c24xx_i2c.wait),
.adap   = {
.name   = "s3c2410-i2c",

-- 
Milind Arun Choudhary
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[KJ][PATCH] i2c: SPIN_LOCK_UNLOCKED cleanup

2007-04-18 Thread Milind Arun Choudhary
SPIN_LOCK_UNLOCKED cleanup,use __SPIN_LOCK_UNLOCKED instead 

Signed-off-by: Milind Arun Choudhary [EMAIL PROTECTED]

---
 i2c-pxa.c |2 +-
 i2c-s3c2410.c |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
index 14e83d0..d5d44ed 100644
--- a/drivers/i2c/busses/i2c-pxa.c
+++ b/drivers/i2c/busses/i2c-pxa.c
@@ -825,7 +825,7 @@ static const struct i2c_algorithm i2c_pxa_algorithm = {
 };
 
 static struct pxa_i2c i2c_pxa = {
-   .lock   = SPIN_LOCK_UNLOCKED,
+   .lock   = __SPIN_LOCK_UNLOCKED(i2c_pxa.lock),
.adap   = {
.owner  = THIS_MODULE,
.algo   = i2c_pxa_algorithm,
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c
index 556f244..3eb5958 100644
--- a/drivers/i2c/busses/i2c-s3c2410.c
+++ b/drivers/i2c/busses/i2c-s3c2410.c
@@ -570,7 +570,7 @@ static const struct i2c_algorithm s3c24xx_i2c_algorithm = {
 };
 
 static struct s3c24xx_i2c s3c24xx_i2c = {
-   .lock   = SPIN_LOCK_UNLOCKED,
+   .lock   = __SPIN_LOCK_UNLOCKED(s3c24xx_i2c.lock),
.wait   = __WAIT_QUEUE_HEAD_INITIALIZER(s3c24xx_i2c.wait),
.adap   = {
.name   = s3c2410-i2c,

-- 
Milind Arun Choudhary
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/