RE: [PATCH] Input: Introduce the use of managed version of kzalloc

2014-05-09 Thread Opensource [Anthony Olech]
kfree(tsi); > input_free_device(input_dev); > > return error; > @@ -327,7 +326,6 @@ static int da9052_ts_remove(struct platform_device > *pdev) > da9052_free_irq(tsi->da9052, DA9052_IRQ_PENDOWN, tsi); > > input_unregister_device(tsi->dev); > - kfree(tsi); > > return 0; > } > -- > 1.9.1 for the content of this patch: Acked-by: Opensource [Anthony Olech] -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

RE: [PATCH] Input: Introduce the use of managed version of kzalloc

2014-05-09 Thread Opensource [Anthony Olech]
platform_device *pdev) da9052_free_irq(tsi-da9052, DA9052_IRQ_PENDOWN, tsi); input_unregister_device(tsi-dev); - kfree(tsi); return 0; } -- 1.9.1 for the content of this patch: Acked-by: Opensource [Anthony Olech] anthony.olech.opensou...@diasemi.com -- To unsubscribe from

RE: [PATCH V1] drivers/rtc: da9052: ALARM causes interrupt storm

2014-04-30 Thread Opensource [Anthony Olech]
Hi Alessandro, you did not reply to my patch submission. Why not? Tony Olech Dialog Semiconductor > -Original Message- > From: Opensource [Anthony Olech] > [mailto:anthony.olech.opensou...@diasemi.com] > Sent: 02 April 2014 12:46 > To: Alessandro Zummo; Support Opensou

RE: [PATCH V1] drivers/rtc: da9052: ALARM causes interrupt storm

2014-04-30 Thread Opensource [Anthony Olech]
Hi Alessandro, you did not reply to my patch submission. Why not? Tony Olech Dialog Semiconductor -Original Message- From: Opensource [Anthony Olech] [mailto:anthony.olech.opensou...@diasemi.com] Sent: 02 April 2014 12:46 To: Alessandro Zummo; Support Opensource Cc: linux-kernel

[PATCH V1] drivers/mfd: da9052: use multiwrite mode

2014-04-03 Thread Opensource [Anthony Olech]
Use the new regmap core API regmap_multi_reg_write(), to prevent a rare problem with the Dialog DA9052/3 PMIC devices that causes the device to fail. Signed-off-by: Anthony Olech --- This patch is relative to linux-next repository tag next-20140403 Even though the probability of the problem

[PATCH V1] drivers/mfd: da9052: use multiwrite mode

2014-04-03 Thread Opensource [Anthony Olech]
Use the new regmap core API regmap_multi_reg_write(), to prevent a rare problem with the Dialog DA9052/3 PMIC devices that causes the device to fail. Signed-off-by: Anthony Olech anthony.olech.opensou...@diasemi.com --- This patch is relative to linux-next repository tag next-20140403 Even

[PATCH V1] drivers/rtc: da9052: ALARM causes interrupt storm

2014-04-02 Thread Opensource [Anthony Olech]
Setting the alarm to a time not on a minute boundary results in repeated interrupts being generated by the DA9052/3 PMIC device until the kernel RTC core sees that the alarm has rung. Sometimes the number and frequency of interrupts can cause the kernel to disable the IRQ line used by the DA9052/3

[PATCH V1] drivers/rtc: da9052: ALARM causes interrupt storm

2014-04-02 Thread Opensource [Anthony Olech]
Setting the alarm to a time not on a minute boundary results in repeated interrupts being generated by the DA9052/3 PMIC device until the kernel RTC core sees that the alarm has rung. Sometimes the number and frequency of interrupts can cause the kernel to disable the IRQ line used by the DA9052/3

[RFC V3] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-03-04 Thread Opensource [Anthony Olech]
This is the implementation of regmap_multi_reg_write() There is a new capability 'can_multi_write' that device drivers must set in order to use this multi reg write mode. This replaces the first definition, which just defined the API. Signed-off-by: Anthony Olech --- This patch is relative to

[RFC V3] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-03-04 Thread Opensource [Anthony Olech]
This is the implementation of regmap_multi_reg_write() There is a new capability 'can_multi_write' that device drivers must set in order to use this multi reg write mode. This replaces the first definition, which just defined the API. Signed-off-by: Anthony Olech

[RFC V2] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-03-03 Thread Opensource [Anthony Olech]
This is the implementation of regmap_multi_reg_write() It replaces the first definition, which just defined the API. Signed-off-by: Anthony Olech --- This patch is relative to linux-next repository tag next-20140228 The API definition of regmap_multi_reg_write() has been in the kernel

[RFC V2] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-03-03 Thread Opensource [Anthony Olech]
This is the implementation of regmap_multi_reg_write() It replaces the first definition, which just defined the API. Signed-off-by: Anthony Olech anthony.olech.opensou...@diasemi.com --- This patch is relative to linux-next repository tag next-20140228 The API definition of

RE: [RFC V1] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-02-28 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@kernel.org] > Sent: 28 February 2014 03:37 > To: Opensource [Anthony Olech] > Cc: Greg Kroah-Hartman; linux-kernel@vger.kernel.org; David Dajun Chen > Subject: Re: [RFC V1] drivers/base/regm

RE: [RFC V1] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-02-28 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@kernel.org] Sent: 28 February 2014 03:37 To: Opensource [Anthony Olech] Cc: Greg Kroah-Hartman; linux-kernel@vger.kernel.org; David Dajun Chen Subject: Re: [RFC V1] drivers/base/regmap: Implementation for regmap_multi_reg_write

[RFC V1] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-02-27 Thread Opensource [Anthony Olech]
This is the implementation of regmap_multi_reg_write() It replaces the first definition, which just defined the API. Signed-off-by: Anthony Olech --- This patch is relative to linux-next repository tag next-20140224 The API definition of regmap_multi_reg_write() has been in the kernel

[RFC V1] drivers/base/regmap: Implementation for regmap_multi_reg_write

2014-02-27 Thread Opensource [Anthony Olech]
This is the implementation of regmap_multi_reg_write() It replaces the first definition, which just defined the API. Signed-off-by: Anthony Olech anthony.olech.opensou...@diasemi.com --- This patch is relative to linux-next repository tag next-20140224 The API definition of

RE: [PATCH V1 2/3] MFD: da9052: Add new DA9053 BC chip variant

2014-02-25 Thread Opensource [Anthony Olech]
> -Original Message- > From: Lee Jones [mailto:lee.jo...@linaro.org] > Sent: 25 February 2014 08:57 > To: Opensource [Anthony Olech] > Cc: Samuel Ortiz; Liam Girdwood; linux-kernel@vger.kernel.org; Mark > Brown; David Dajun Chen > Subject: Re: [PATCH V1 2/3] MFD: da90

RE: [PATCH V1 2/3] MFD: da9052: Add new DA9053 BC chip variant

2014-02-25 Thread Opensource [Anthony Olech]
-Original Message- From: Lee Jones [mailto:lee.jo...@linaro.org] Sent: 25 February 2014 08:57 To: Opensource [Anthony Olech] Cc: Samuel Ortiz; Liam Girdwood; linux-kernel@vger.kernel.org; Mark Brown; David Dajun Chen Subject: Re: [PATCH V1 2/3] MFD: da9052: Add new DA9053 BC chip

RE: [PATCH V1 3/3] REGULATOR: da9052: Add new DA9053 BC chip variant

2014-02-20 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@kernel.org] > Sent: 19 February 2014 16:48 > To: Opensource [Anthony Olech] > Cc: Liam Girdwood; Lee Jones; linux-kernel@vger.kernel.org; Samuel Ortiz; > David Dajun Chen > Subject: Re: [PATCH V1 3/3] REGULATOR: d

RE: [PATCH V1 3/3] REGULATOR: da9052: Add new DA9053 BC chip variant

2014-02-20 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@kernel.org] Sent: 19 February 2014 16:48 To: Opensource [Anthony Olech] Cc: Liam Girdwood; Lee Jones; linux-kernel@vger.kernel.org; Samuel Ortiz; David Dajun Chen Subject: Re: [PATCH V1 3/3] REGULATOR: da9052: Add new DA9053 BC

[PATCH V1 0/3] da9052: Add new supported chip

2014-02-19 Thread Opensource [Anthony Olech]
st because it provides the hash definition of DA9053_BC Many thanks, Anthony Olech, Dialog Semiconductor Opensource [Anthony Olech] (3): include/linux/mfd/da9052/da9052: Add new BC chip MFD: da9052: Add new DA9053 BC chip variant REGULATOR: da9052: Add new DA9053 BC chip variant drivers/

[PATCH V1 1/3] include/linux/mfd/da9052/da9052: Add new BC chip

2014-02-19 Thread Opensource [Anthony Olech]
Add the hash define for the new variant of the DA9053 PMIC called BC. Signed-off-by: Anthony Olech --- This patch is relative to linux-next repository tag next-20140219 This patch must be applied before the others in this patch series or the drivers that the other patches modify will not

[PATCH V1 2/3] MFD: da9052: Add new DA9053 BC chip variant

2014-02-19 Thread Opensource [Anthony Olech]
Add support for a new BC variant of the DA9053 PMIC. There is one difference between it and the AA, BA and BB. This patch also corrects a typing mistake in one of the BA name strings that was incorrectly typed as "ab". Signed-off-by: Anthony Olech --- This patch is relative to linux-next

[PATCH V1 3/3] REGULATOR: da9052: Add new DA9053 BC chip variant

2014-02-19 Thread Opensource [Anthony Olech]
Add support for a new BC variant of the DA9053 PMIC. There is one difference between it and the AA, BA and BB. Signed-off-by: Anthony Olech --- This patch is relative to linux-next repository tag next-20140219 This patch depends on patch number 1 of this patch series being applied first or it

[PATCH V1 2/3] MFD: da9052: Add new DA9053 BC chip variant

2014-02-19 Thread Opensource [Anthony Olech]
Add support for a new BC variant of the DA9053 PMIC. There is one difference between it and the AA, BA and BB. This patch also corrects a typing mistake in one of the BA name strings that was incorrectly typed as ab. Signed-off-by: Anthony Olech anthony.olech.opensou...@diasemi.com --- This

[PATCH V1 3/3] REGULATOR: da9052: Add new DA9053 BC chip variant

2014-02-19 Thread Opensource [Anthony Olech]
Add support for a new BC variant of the DA9053 PMIC. There is one difference between it and the AA, BA and BB. Signed-off-by: Anthony Olech anthony.olech.opensou...@diasemi.com --- This patch is relative to linux-next repository tag next-20140219 This patch depends on patch number 1 of this

[PATCH V1 1/3] include/linux/mfd/da9052/da9052: Add new BC chip

2014-02-19 Thread Opensource [Anthony Olech]
Add the hash define for the new variant of the DA9053 PMIC called BC. Signed-off-by: Anthony Olech anthony.olech.opensou...@diasemi.com --- This patch is relative to linux-next repository tag next-20140219 This patch must be applied before the others in this patch series or the drivers that the

[PATCH V1 0/3] da9052: Add new supported chip

2014-02-19 Thread Opensource [Anthony Olech]
it provides the hash definition of DA9053_BC Many thanks, Anthony Olech, Dialog Semiconductor Opensource [Anthony Olech] (3): include/linux/mfd/da9052/da9052: Add new BC chip MFD: da9052: Add new DA9053 BC chip variant REGULATOR: da9052: Add new DA9053 BC chip variant drivers/mfd/da9052

RE: [PATCH V1] da9052: ONKEY: use correct register bit for key status

2014-02-11 Thread Opensource [Anthony Olech]
> -Original Message- > From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] > Sent: 11 February 2014 16:29 ..[snip].. > > static void da9052_onkey_query(struct da9052_onkey *onkey) { > > - int key_stat; > > + int ret, key_stat; > > > > - key_stat =

RE: [PATCH V1] da9052: ONKEY: use correct register bit for key status

2014-02-11 Thread Opensource [Anthony Olech]
-Original Message- From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] Sent: 11 February 2014 16:29 ..[snip].. static void da9052_onkey_query(struct da9052_onkey *onkey) { - int key_stat; + int ret, key_stat; - key_stat = da9052_reg_read(onkey-da9052,

RE: [PATCH V1] fix da9052 volatile register definition ommissions

2014-02-03 Thread Opensource [Anthony Olech]
> -Original Message- > From: Lee Jones [mailto:lee.jo...@linaro.org] > Sent: 03 February 2014 10:29 > To: Opensource [Anthony Olech] > Cc: Mark Brown; Samuel Ortiz; linux-kernel@vger.kernel.org; David Dajun > Chen > Subject: Re: [PATCH V1] fix da9052 volatile register

RE: [PATCH V1] fix da9052 volatile register definition ommissions

2014-02-03 Thread Opensource [Anthony Olech]
-Original Message- From: Lee Jones [mailto:lee.jo...@linaro.org] Sent: 03 February 2014 10:29 To: Opensource [Anthony Olech] Cc: Mark Brown; Samuel Ortiz; linux-kernel@vger.kernel.org; David Dajun Chen Subject: Re: [PATCH V1] fix da9052 volatile register definition ommissions

RE: [PATCH V1] input: use device managed memory in da9052 touchscreen driver

2014-01-10 Thread Opensource [Anthony Olech]
> -Original Message- > From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] > Sent: 09 January 2014 19:13 > To: Opensource [Anthony Olech] > Cc: linux-in...@vger.kernel.org; linux-kernel@vger.kernel.org; Huqiu Liu; > David Dajun Chen > Subject: Re: [PATCH V1] inpu

RE: [PATCH V1] input: use device managed memory in da9052 touchscreen driver

2014-01-10 Thread Opensource [Anthony Olech]
-Original Message- From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] Sent: 09 January 2014 19:13 To: Opensource [Anthony Olech] Cc: linux-in...@vger.kernel.org; linux-kernel@vger.kernel.org; Huqiu Liu; David Dajun Chen Subject: Re: [PATCH V1] input: use device managed memory

RE: [PATCH V1] input: fix memory leak in da9052 touchscreen driver

2014-01-08 Thread Opensource [Anthony Olech]
> -Original Message- > From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] > Sent: 08 January 2014 17:26 > To: Opensource [Anthony Olech] > Cc: linux-in...@vger.kernel.org; linux-kernel@vger.kernel.org; Huqiu Liu; > David Dajun Chen > Subject: Re: [PATCH V1] i

RE: [PATCH V1] input: fix memory leak in da9052 touchscreen driver

2014-01-08 Thread Opensource [Anthony Olech]
-Original Message- From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] Sent: 08 January 2014 17:26 To: Opensource [Anthony Olech] Cc: linux-in...@vger.kernel.org; linux-kernel@vger.kernel.org; Huqiu Liu; David Dajun Chen Subject: Re: [PATCH V1] input: fix memory leak in da9052

RE: [lm-sensors] [PATCH V1] fix adc to voltage calculation in da9052 power driver

2013-12-19 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:groe...@gmail.com] On Behalf Of Guenter > Roeck > Sent: 19 December 2013 18:11 > To: Jean Delvare > Cc: Opensource [Anthony Olech]; lm-sens...@lm-sensors.org; Anton > Vorontsov; David Woodhouse; linux-kernel@vger.ke

RE: [lm-sensors] [PATCH V1] fix adc to voltage calculation in da9052 power driver

2013-12-19 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:groe...@gmail.com] On Behalf Of Guenter > Roeck > Sent: 18 December 2013 17:24 > To: Opensource [Anthony Olech] > Cc: Jean Delvare; open list:HARDWARE MONITORING; Anton Vorontsov; > David Woodhouse; open list; David

RE: [lm-sensors] [PATCH V1] fix adc to voltage calculation in da9052 power driver

2013-12-19 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:groe...@gmail.com] On Behalf Of Guenter Roeck Sent: 18 December 2013 17:24 To: Opensource [Anthony Olech] Cc: Jean Delvare; open list:HARDWARE MONITORING; Anton Vorontsov; David Woodhouse; open list; David Dajun Chen Subject: Re: [lm

RE: [lm-sensors] [PATCH V1] fix adc to voltage calculation in da9052 power driver

2013-12-19 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:groe...@gmail.com] On Behalf Of Guenter Roeck Sent: 19 December 2013 18:11 To: Jean Delvare Cc: Opensource [Anthony Olech]; lm-sens...@lm-sensors.org; Anton Vorontsov; David Woodhouse; linux-kernel@vger.kernel.org; David Dajun Chen

RE: [lm-sensors] [PATCH V1] fix adc to voltage calculation in da9052 power driver

2013-12-18 Thread Opensource [Anthony Olech]
> -Original Message- > From: Jean Delvare [mailto:kh...@linux-fr.org] > Sent: 18 December 2013 15:33 > To: Opensource [Anthony Olech] > Cc: Anton Vorontsov; David Woodhouse; David Dajun Chen; open list; open > list:HARDWARE MONITORING > Subject: Re: [lm-sensor

RE: [lm-sensors] [PATCH V1] fix adc to voltage calculation in da9052 power driver

2013-12-18 Thread Opensource [Anthony Olech]
-Original Message- From: Jean Delvare [mailto:kh...@linux-fr.org] Sent: 18 December 2013 15:33 To: Opensource [Anthony Olech] Cc: Anton Vorontsov; David Woodhouse; David Dajun Chen; open list; open list:HARDWARE MONITORING Subject: Re: [lm-sensors] [PATCH V1] fix adc to voltage

RE: [PATCH V1] new API regmap_multi_reg_write() definition

2013-10-14 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@kernel.org] > Sent: 14 October 2013 15:15 > To: Opensource [Anthony Olech] > Cc: Greg Kroah-Hartman; LKML; David Dajun Chen > Subject: Re: [PATCH V1] new API regmap_multi_reg_write() definition > > On Fri, Oc

RE: [PATCH V1] new API regmap_multi_reg_write() definition

2013-10-14 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@kernel.org] Sent: 14 October 2013 15:15 To: Opensource [Anthony Olech] Cc: Greg Kroah-Hartman; LKML; David Dajun Chen Subject: Re: [PATCH V1] new API regmap_multi_reg_write() definition On Fri, Oct 11, 2013 at 03:31:11PM +0100

RE: [PATCH V1] new API regmap_multi_write()

2013-10-10 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@kernel.org] > Sent: 10 October 2013 13:21 > To: Opensource [Anthony Olech] > Cc: Greg Kroah-Hartman; LKML; David Dajun Chen > Subject: Re: [PATCH V1] new API regmap_multi_write() > > On Thu, Oct 10, 2013 at 1

RE: [PATCH V1] new API regmap_multi_write()

2013-10-10 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@kernel.org] Sent: 10 October 2013 13:21 To: Opensource [Anthony Olech] Cc: Greg Kroah-Hartman; LKML; David Dajun Chen Subject: Re: [PATCH V1] new API regmap_multi_write() On Thu, Oct 10, 2013 at 11:50:23AM +0100, Anthony Olech

RE: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver

2013-05-03 Thread Opensource [Anthony Olech]
> -Original Message- > From: Linus Walleij [mailto:linus.wall...@linaro.org] > Sent: 03 May 2013 12:59 > To: Opensource [Anthony Olech] > Cc: Grant Likely; Linus Walleij; Mark Brown; LKML; Lee Jones > Subject: Re: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver &

RE: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver

2013-05-03 Thread Opensource [Anthony Olech]
-Original Message- From: Linus Walleij [mailto:linus.wall...@linaro.org] Sent: 03 May 2013 12:59 To: Opensource [Anthony Olech] Cc: Grant Likely; Linus Walleij; Mark Brown; LKML; Lee Jones Subject: Re: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver On Tue, Apr 30, 2013 at 6

RE: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver

2013-04-30 Thread Opensource [Anthony Olech]
> -Original Message- > From: Linus Walleij [mailto:linus.wall...@linaro.org] > Sent: 24 April 2013 14:15 > To: Opensource [Anthony Olech] > Cc: Grant Likely; Linus Walleij; Mark Brown; LKML; David Dajun Chen; Lee Jones > Subject: Re: [NEW DRIVER V6 5/7] drivers/gpio:

RE: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver

2013-04-30 Thread Opensource [Anthony Olech]
-Original Message- From: Linus Walleij [mailto:linus.wall...@linaro.org] Sent: 24 April 2013 14:15 To: Opensource [Anthony Olech] Cc: Grant Likely; Linus Walleij; Mark Brown; LKML; David Dajun Chen; Lee Jones Subject: Re: [NEW DRIVER V6 5/7] drivers/gpio: DA9058 GPIO driver On Fri

RE: [NEW DRIVER V6 1/7] drivers/mfd: DA9058 MFD core driver

2013-04-22 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@kernel.org] > Sent: 22 April 2013 14:34 > To: Opensource [Anthony Olech] > Cc: Samuel Ortiz; Arnd Bergmann; Mauro Carvalho Chehab; Steven Toth; > Michael Krufky; LKML; David Dajun Chen > Subject: Re: [NEW DRIVE

RE: [NEW DRIVER V6 1/7] drivers/mfd: DA9058 MFD core driver

2013-04-22 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@kernel.org] Sent: 22 April 2013 14:34 To: Opensource [Anthony Olech] Cc: Samuel Ortiz; Arnd Bergmann; Mauro Carvalho Chehab; Steven Toth; Michael Krufky; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V6 1/7] drivers/mfd: DA9058

RE: [NEW DRIVER V6 6/7] drivers/hwmon: DA9058 HWMON driver

2013-04-21 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 20 April 2013 18:35 > To: Lars-Peter Clausen > Cc: Opensource [Anthony Olech]; Jean Delvare; Mark Brown; Randy Dunlap; > lm-sens...@lm-sensors.org; LKML; David Dajun Chen > Subject: R

RE: [NEW DRIVER V6 6/7] drivers/hwmon: DA9058 HWMON driver

2013-04-21 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 20 April 2013 18:35 To: Lars-Peter Clausen Cc: Opensource [Anthony Olech]; Jean Delvare; Mark Brown; Randy Dunlap; lm-sens...@lm-sensors.org; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V6 6/7] drivers

RE: CodingStyle

2013-04-18 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 18 April 2013 14:42 > To: Opensource [Anthony Olech] > Cc: LKML > Subject: Re: CodingStyle > > On Thu, Apr 18, 2013 at 10:48:06AM +0000, Opensource [Anthony Olech] > wrote:

CodingStyle

2013-04-18 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 18 April 2013 05:14 > To: Opensource [Anthony Olech] > Cc: Jean Delvare; Mark Brown; Randy Dunlap; lm-sens...@lm-sensors.org; > LKML; David Dajun Chen > Subject: Re: [NEW DRIVER V5 6/7]

CodingStyle

2013-04-18 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 18 April 2013 05:14 To: Opensource [Anthony Olech] Cc: Jean Delvare; Mark Brown; Randy Dunlap; lm-sens...@lm-sensors.org; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V5 6/7] drivers/hwmon: DA9058 HWMON

RE: CodingStyle

2013-04-18 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 18 April 2013 14:42 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: CodingStyle On Thu, Apr 18, 2013 at 10:48:06AM +, Opensource [Anthony Olech] wrote: -Original Message- From: Guenter

RE: [NEW DRIVER V4 2/7] DA9058 ADC driver

2013-04-16 Thread Opensource [Anthony Olech]
> [...] > please always test your drivers against the latest upstream version before > submitting them. > [...] Hi Lars, The driver was tested against linux mainline tag v3.9-rc6, because that was the most recent tagged commit in

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-16 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 16 April 2013 14:36 > To: Opensource [Anthony Olech] > Cc: LKML > Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver > > On Tue, Apr 16, 2013 at 09:17:27AM +0000, Opensource

RE: [NEW DRIVER V4 3/7] DA9058 ONKEY driver

2013-04-16 Thread Opensource [Anthony Olech]
> -Original Message- > From: Randy Dunlap [mailto:rdun...@infradead.org] > Sent: 12 April 2013 21:02 > To: Opensource [Anthony Olech] > Cc: Dmitry Torokhov; Mark Brown; Samuel Ortiz; Ashish Jangam; Eric > Andersson; Andrew Jones; linux-in...@vger.kernel.org; LKML

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-16 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@kernel.org] > Sent: 12 April 2013 14:27 > To: Opensource [Anthony Olech] > Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David > Dajun Chen > Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR

RE: [NEW DRIVER V4 0/7] DA9058 PMIC - please comment on this new driver

2013-04-16 Thread Opensource [Anthony Olech]
> -Original Message- > From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] > Sent: 12 April 2013 19:07 > To: Opensource [Anthony Olech] > Cc: LKML; Alessandro Zummo > Subject: Re: [NEW DRIVER V4 0/7] DA9058 PMIC - please comment on this new > driver > On Frid

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-16 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 15 April 2013 18:46 > To: Opensource [Anthony Olech] > Cc: LKML > Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver > > On Mon, Apr 15, 2013 at 05:29:13PM +0000, Opensource

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-16 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 15 April 2013 18:46 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver On Mon, Apr 15, 2013 at 05:29:13PM +, Opensource [Anthony Olech] wrote

RE: [NEW DRIVER V4 0/7] DA9058 PMIC - please comment on this new driver

2013-04-16 Thread Opensource [Anthony Olech]
-Original Message- From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] Sent: 12 April 2013 19:07 To: Opensource [Anthony Olech] Cc: LKML; Alessandro Zummo Subject: Re: [NEW DRIVER V4 0/7] DA9058 PMIC - please comment on this new driver On Friday, April 12, 2013 02:05:29 PM

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-16 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@kernel.org] Sent: 12 April 2013 14:27 To: Opensource [Anthony Olech] Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver On Fri, Apr 12

RE: [NEW DRIVER V4 3/7] DA9058 ONKEY driver

2013-04-16 Thread Opensource [Anthony Olech]
-Original Message- From: Randy Dunlap [mailto:rdun...@infradead.org] Sent: 12 April 2013 21:02 To: Opensource [Anthony Olech] Cc: Dmitry Torokhov; Mark Brown; Samuel Ortiz; Ashish Jangam; Eric Andersson; Andrew Jones; linux-in...@vger.kernel.org; LKML; David Dajun Chen Subject: Re

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-16 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 16 April 2013 14:36 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver On Tue, Apr 16, 2013 at 09:17:27AM +, Opensource [Anthony Olech] wrote

RE: [NEW DRIVER V4 2/7] DA9058 ADC driver

2013-04-16 Thread Opensource [Anthony Olech]
[...] please always test your drivers against the latest upstream version before submitting them. [...] Hi Lars, The driver was tested against linux mainline tag v3.9-rc6, because that was the most recent tagged commit in git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git on

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-15 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 15 April 2013 17:36 > To: Opensource [Anthony Olech] > Cc: LKML > Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver > > On Mon, Apr 15, 2013 at 03:00:58PM +0000, Opensource

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-15 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 12 April 2013 14:32 > To: Opensource [Anthony Olech] > Cc: Mark Brown; Liam Girdwood; Jean Delvare; Randy Dunlap; LKML; David > Dajun Chen > Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULAT

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-15 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 12 April 2013 14:32 To: Opensource [Anthony Olech] Cc: Mark Brown; Liam Girdwood; Jean Delvare; Randy Dunlap; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver On Fri, Apr 12

RE: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver

2013-04-15 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 15 April 2013 17:36 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: [NEW DRIVER V4 7/7] DA9058 REGULATOR driver On Mon, Apr 15, 2013 at 03:00:58PM +, Opensource [Anthony Olech] wrote

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 17 September 2012 12:33 > To: Opensource [Anthony Olech] > Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David > Dajun Chen > Subject: Re: [NEW DRIVER V3

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 17 September 2012 12:16 > To: Opensource [Anthony Olech] > Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David > Dajun Chen > Subject: Re: [NEW DRIVER V3

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 17 September 2012 11:40 > To: Opensource [Anthony Olech] > Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David > Dajun Chen > Subject: Re: [NEW DRIVER V3

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 27 August 2012 17:51 > To: Opensource [Anthony Olech] > Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David > Dajun Chen > Subject: Re: [NEW DRIVER V3

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 27 August 2012 17:51 To: Opensource [Anthony Olech] Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 17 September 2012 11:40 To: Opensource [Anthony Olech] Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 17 September 2012 12:16 To: Opensource [Anthony Olech] Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

RE: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

2012-09-17 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 17 September 2012 12:33 To: Opensource [Anthony Olech] Cc: Liam Girdwood; Guenter Roeck; Jean Delvare; Randy Dunlap; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V3 8/8] DA9058 REGULATOR driver

RE: [NEW DRIVER V3 1/8] DA9058 MFD core driver

2012-08-16 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 15 August 2012 19:53 > To: Opensource [Anthony Olech] > Cc: Samuel Ortiz; Arnd Bergmann; Mauro Carvalho Chehab; Steven Toth; > Michael Krufky; LKML; David Dajun Chen > Subject:

RE: [NEW DRIVER V3 1/8] DA9058 MFD core driver

2012-08-16 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 15 August 2012 19:53 To: Opensource [Anthony Olech] Cc: Samuel Ortiz; Arnd Bergmann; Mauro Carvalho Chehab; Steven Toth; Michael Krufky; LKML; David Dajun Chen Subject: Re: [NEW DRIVER V3 1/8

RE: [NEW DRIVER V2 5/7] DA9058 GPIO driver

2012-08-15 Thread Opensource [Anthony Olech]
> -Original Message- > From: Linus Walleij [mailto:linus.wall...@linaro.org] > Sent: 13 August 2012 14:10 > To: Opensource [Anthony Olech] > Cc: Grant Likely; Linus Walleij; Mark Brown; LKML; David Dajun Chen; Samuel > Ortiz; Lee Jones > Subject: Re: [NEW DRIVER V2 5/

RE: [NEW DRIVER V2 5/7] DA9058 GPIO driver

2012-08-15 Thread Opensource [Anthony Olech]
-Original Message- From: Linus Walleij [mailto:linus.wall...@linaro.org] Sent: 13 August 2012 14:10 To: Opensource [Anthony Olech] Cc: Grant Likely; Linus Walleij; Mark Brown; LKML; David Dajun Chen; Samuel Ortiz; Lee Jones Subject: Re: [NEW DRIVER V2 5/7] DA9058 GPIO driver Hi

RE: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped

2012-08-08 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 07 August 2012 18:02 > To: Opensource [Anthony Olech] > Cc: LKML; David Dajun Chen > Subject: Re: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped > On Tue, Aug 0

RE: [NEW DRIVER V1 5/7] DA9058 GPIO driver

2012-08-08 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 07 August 2012 18:15 > To: Opensource [Anthony Olech] > Cc: LKML > Subject: Re: [NEW DRIVER V1 5/7] DA9058 GPIO driver > On Mon, Aug 06, 2012 at 03:15:17PM +, Opensource [A

RE: [NEW DRIVER V1 5/7] DA9058 GPIO driver

2012-08-08 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 07 August 2012 18:15 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: [NEW DRIVER V1 5/7] DA9058 GPIO driver On Mon, Aug 06, 2012 at 03:15:17PM +, Opensource [Anthony Olech] wrote: I do

RE: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped

2012-08-08 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 07 August 2012 18:02 To: Opensource [Anthony Olech] Cc: LKML; David Dajun Chen Subject: Re: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped On Tue, Aug 07, 2012 at 02:37:37PM +

RE: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped

2012-08-07 Thread Opensource [Anthony Olech]
> -Original Message- > From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] > Sent: 07 August 2012 15:03 > On Tue, Aug 07, 2012 at 11:18:20AM +, Opensource [Anthony Olech] > wrote: > > if you don't TOP POST how can you tell who wrote what? > Well, it's

RE: [lm-sensors] [NEW DRIVER V2 6/7] DA9058 HWMON driver

2012-08-07 Thread Opensource [Anthony Olech]
> -Original Message- > From: Guenter Roeck [mailto:li...@roeck-us.net] > Sent: 06 August 2012 18:40 > To: Opensource [Anthony Olech] > Cc: Guenter Roeck; Jean Delvare; Randy Dunlop; Mark Brown; David Dajun > Chen; LKML; lm-sens...@lm-sensors.org > Subject: Re: [lm-sens

RE: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped

2012-08-07 Thread Opensource [Anthony Olech]
if you don't TOP POST how can you tell who wrote what? see my comments embedded below -Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 04 August 2012 11:54 To: Opensource [Anthony Olech] Cc: LKML; Anthony Olech; David Dajun Chen Subject: Re: [PATCH

RE: [NEW DRIVER V2 1/7] DA9058 MFD core and ADC driver

2012-08-07 Thread Opensource [Anthony Olech]
al Message- From: Venu Byravarasu [mailto:vbyravar...@nvidia.com] Sent: 06 August 2012 09:38 To: Opensource [Anthony Olech]; Samuel Ortiz Cc: Mark Brown; Arnd Bergmann; Mauro Carvalho Chehab; Steven Toth; Michael Krufky; LKML; David Dajun Chen Subject: RE: [NEW DRIVER V2 1/7] DA9058 MFD core and

RE: [NEW DRIVER V2 1/7] DA9058 MFD core and ADC driver

2012-08-07 Thread Opensource [Anthony Olech]
- From: Venu Byravarasu [mailto:vbyravar...@nvidia.com] Sent: 06 August 2012 09:38 To: Opensource [Anthony Olech]; Samuel Ortiz Cc: Mark Brown; Arnd Bergmann; Mauro Carvalho Chehab; Steven Toth; Michael Krufky; LKML; David Dajun Chen Subject: RE: [NEW DRIVER V2 1/7] DA9058 MFD core and ADC driver

RE: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped

2012-08-07 Thread Opensource [Anthony Olech]
if you don't TOP POST how can you tell who wrote what? see my comments embedded below -Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 04 August 2012 11:54 To: Opensource [Anthony Olech] Cc: LKML; Anthony Olech; David Dajun Chen Subject: Re: [PATCH

RE: [lm-sensors] [NEW DRIVER V2 6/7] DA9058 HWMON driver

2012-08-07 Thread Opensource [Anthony Olech]
-Original Message- From: Guenter Roeck [mailto:li...@roeck-us.net] Sent: 06 August 2012 18:40 To: Opensource [Anthony Olech] Cc: Guenter Roeck; Jean Delvare; Randy Dunlop; Mark Brown; David Dajun Chen; LKML; lm-sens...@lm-sensors.org Subject: Re: [lm-sensors] [NEW DRIVER V2 6/7

RE: [PATCH] regmap-irq: allow auto-allocated IRQs to be mapped

2012-08-07 Thread Opensource [Anthony Olech]
-Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 07 August 2012 15:03 On Tue, Aug 07, 2012 at 11:18:20AM +, Opensource [Anthony Olech] wrote: if you don't TOP POST how can you tell who wrote what? Well, it's not clear who wrote what in your

RE: [NEW DRIVER V1 5/7] DA9058 GPIO driver

2012-08-06 Thread Opensource [Anthony Olech]
why a driver mutex is required in addition to the regmap's register access mutex Tony Olech -Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 02 August 2012 11:20 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: [NEW DRIVER V1 5/7] DA9058 GPIO driver

RE: [NEW DRIVER V1 5/7] DA9058 GPIO driver

2012-08-06 Thread Opensource [Anthony Olech]
why a driver mutex is required in addition to the regmap's register access mutex Tony Olech -Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: 02 August 2012 11:20 To: Opensource [Anthony Olech] Cc: LKML Subject: Re: [NEW DRIVER V1 5/7] DA9058 GPIO driver

  1   2   >