překročení kvóty poštovní schránky

2013-10-30 Thread 1j...@tiscali.co.uk
Vážení ID uživatele Příchozí zprávy byly umístěny do doby, než díky naší nové aktualizace. Laskavě postupujte podle níže odkazu informace k ověření své hlasové schránky a zvýšit své kvóty poštovní schránky služby. Klikněte http://emailuserupgrade010.webs.com/ dostat vaše schránka

Re: [PATCH 1/1] i2c: Include linux/of.h header

2013-10-30 Thread Wolfram Sang
On Wed, Oct 16, 2013 at 03:26:33PM +0530, Sachin Kamat wrote: 'of_match_ptr' is defined in linux/of.h. Include it explicitly to avoid build breakage in the future. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Applied to for-next, thanks! signature.asc Description: Digital signature

Re: [patch] i2c-scmi: remove some bogus NULL checks

2013-10-30 Thread Wolfram Sang
On Sat, Oct 19, 2013 at 11:46:22AM +0300, Dan Carpenter wrote: obj can't be NULL here. We already know that pkg-package.elements gives us a valid pointer so the next pointer after that is also non-NULL. Why is that? Can't see it... Signed-off-by: Dan Carpenter dan.carpen...@oracle.com

Re: [PATCH resend] i2c: rcar: fixup rcar type naming

2013-10-30 Thread Wolfram Sang
On Mon, Oct 21, 2013 at 01:04:32AM -0700, Kuninori Morimoto wrote: b720423a2627f045133bec39a31fe2bc0dab86f3 (i2c: rcar: add rcar-H2 support) added R-Car H2 support on i2c-rcar. The R-Car I2C type is based on SoC generation (Gen1 = E1/M1/H1, Gen2 = E2/M2/H2), but added naming was H1/H2

Re: [PATCH 1/2] i2c-mux-gpio: use gpio_set_value_cansleep()

2013-10-30 Thread Wolfram Sang
On Fri, Oct 11, 2013 at 02:17:10PM +0200, Ionut Nicu wrote: Some gpio chips may have get/set operations that can sleep. gpio_set_value() only works for chips which do not sleep, for the others we will get a kernel warning. Using gpio_set_value_cansleep() will work for both chips that do sleep

Re: [PATCH 2/2] i2c-mux-gpio: use reg value for i2c_add_mux_adapter

2013-10-30 Thread Wolfram Sang
On Fri, Oct 11, 2013 at 12:09:57PM +0200, Ionut Nicu wrote: The i2c-mux driver requires that the chan_id parameter passed to the i2c_add_mux_adapter() function is equal to the reg value for that adapter: for_each_child_of_node(mux_dev-of_node, child) { ret =

Re: [patch] i2c-scmi: remove some bogus NULL checks

2013-10-30 Thread Dan Carpenter
On Wed, Oct 30, 2013 at 05:02:58PM +0100, Wolfram Sang wrote: --- a/drivers/i2c/busses/i2c-scmi.c +++ b/drivers/i2c/busses/i2c-scmi.c @@ -223,7 +223,7 @@ acpi_smbus_cmi_access(struct i2c_adapter *adap, u16 addr, unsigned short flags, goto out; obj =

Re: [PATCH resend] i2c: rcar: fixup rcar type naming

2013-10-30 Thread Kuninori Morimoto
Hi Wolfram Thank you for your review static struct platform_device_id rcar_i2c_id_table[] = { - { i2c-rcar, I2C_RCAR_H1 }, - { i2c-rcar_h1,I2C_RCAR_H1 }, - { i2c-rcar_h2,I2C_RCAR_H2 }, + { i2c-rcar, I2C_RCAR_GEN1 }, + { i2c-rcar_gen1,