Re: [PATCH 04/12] i2c : Use mutex instead of semaphore in driver core

2008-01-01 Thread Dave Young
On Dec 29, 2007 7:49 PM, Stefan Richter <[EMAIL PROTECTED]> wrote: > Dave Young wrote: > > --- linux/drivers/i2c/i2c-core.c 2007-12-28 10:06:58.0 +0800 > > +++ linux.new/drivers/i2c/i2c-core.c 2007-12-28 10:08:58.0 +0800 > > @@ -33,8 +33,8 @@ > > #include > > #include > >

Re: [PATCH 04/12] i2c : Use mutex instead of semaphore in driver core

2007-12-29 Thread Stefan Richter
Dave Young wrote: > --- linux/drivers/i2c/i2c-core.c 2007-12-28 10:06:58.0 +0800 > +++ linux.new/drivers/i2c/i2c-core.c 2007-12-28 10:08:58.0 +0800 > @@ -33,8 +33,8 @@ > #include > #include > #include > +#include > #include > -#include 2x #include -- Stefan Richte

[PATCH 04/12] i2c : Use mutex instead of semaphore in driver core

2007-12-28 Thread Dave Young
Signed-off-by: Dave Young <[EMAIL PROTECTED]> --- drivers/i2c/i2c-core.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff -upr linux/drivers/i2c/i2c-core.c linux.new/drivers/i2c/i2c-core.c --- linux/drivers/i2c/i2c-core.c2007-12-28 10:06:58.0 +0800 +++ linux