Re: [PATCH v6 3/5] power: max77843_battery: Add Max77843 fuel gauge device driver

2015-03-01 Thread Beomho Seo
On 03/01/2015 05:00 AM, Paul Bolle wrote: On Tue, 2015-02-24 at 10:29 +0900, Jaewon Kim wrote: diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index 994793d..555e436 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig @@ -212,6 +212,15 @@ config BATTERY_MAX17042

Re: [PATCH v6 2/5] power: max77843_charger: Add Max77843 charger device driver

2015-03-01 Thread Beomho Seo
On 03/01/2015 05:03 AM, Paul Bolle wrote: On Tue, 2015-02-24 at 10:29 +0900, Jaewon Kim wrote: diff --git a/drivers/power/max77843_charger.c b/drivers/power/max77843_charger.c new file mode 100644 index 000..392eebc1a --- /dev/null +++ b/drivers/power/max77843_charger.c @@ -0,0 +1,508

RE: [PATCH] Input: cyapa - Remove superfluous type check in cyapa_gen5_read_idac_data()

2015-03-01 Thread Dudley Du
Thanks for the check. This fix is verified okay. Dudley -Original Message- From: Geert Uytterhoeven [mailto:ge...@linux-m68k.org] Sent: 2015年2月12日 22:16 To: Dmitry Torokhov; Dudley Du Cc: linux-input@vger.kernel.org; linux-ker...@vger.kernel.org; Geert Uytterhoeven Subject:

Re: [PATCH v6 4/5] Input: add haptic drvier on max77843

2015-03-01 Thread Jaewon Kim
HI Dmitry, On 28/02/2015 02:49, Dmitry Torokhov wrote: On Thu, Feb 26, 2015 at 11:49:36AM +0900, Jaewon Kim wrote: Hi Dmitry, On 26/02/2015 10:23, Dmitry Torokhov wrote: Hi Jaewon, On Tue, Feb 24, 2015 at 10:29:07AM +0900, Jaewon Kim wrote: +static void max77843_haptic_play_work(struct

Re: [PATCH v2 1/2] DT: i2c: Deprecate adi,adxl34x compatible string

2015-03-01 Thread Wolfram Sang
On Thu, Feb 26, 2015 at 04:27:49PM +0200, Laurent Pinchart wrote: Hi Wolfram, On Monday 26 January 2015 13:09:47 Wolfram Sang wrote: If you drop adi,adxl346, checkpatch will start complaining if it encounters it in a .dts. Boah, this is annoying. That means we need an 346

[PATCH] input: cyapa: fix unaligned functions redefinition error

2015-03-01 Thread Dudley Du
Use asm/unaligned.h instead of linux/unaligned/access_ok.h head file to fix compiling issues such as following while doing cross platform compiling. include/linux/unaligned/access_ok.h:7:19: error: redefinition of 'get_unaligned_le16' ... include/linux/unaligned/le_struct.h:6:19: note: previous

Re: [PATCH v2 4/6] HID: uclogic: apply quirk NO_EMPTY_INPUT

2015-03-01 Thread Nikolai Kondrashov
On 02/26/2015 08:57 PM, Benjamin Tissoires wrote: NO_EMPTY_INPUT is useful when MULTI_INPUT is set. It prevents to create empty input nodes that user space does not know what to do with. It does not seem to be required at the moment, this is just a preventive patch. This check is only made

Re: [PATCH v2 3/6] HID: uclogic: name the input nodes based on their tool

2015-03-01 Thread Nikolai Kondrashov
On 02/26/2015 08:57 PM, Benjamin Tissoires wrote: We append Pen, Pad, Mouse, Keyboard, Consumer Control or System Control suffix to the appropriate input node to match what the Wacom driver does and be more convenient for the user to know which one is which. Signed-off-by: Benjamin Tissoires