[PATCH 2/4] isl29020: ambient light sensor

2010-04-14 Thread Alan Cox
From: Kalhan Trisal kalhan.tri...@intel.com The LS driver will read the latest Lux measurement based upon the light brightness and will report the LUX output through sysfs interface. Signed-off-by: Kalhan Trisal kalhan.tri...@intel.com Signed-off-by: Alan Cox a...@linux.intel.com ---

[PATCH 3/4] liss331d1: accelerometer driver

2010-04-14 Thread Alan Cox
From: Kalhan Trisal kalhan.tri...@intel.com The acceleremeter driver reads the x,y,z coordinate registers and provides the information to user through the input layer Conversion to input device, clean up and porting of retry fixes needed for AAVA done by Alan Cox. Signed-off-by: Kalhan Trisal

[no subject]

2010-04-14 Thread Alan Cox
Subject: [FOR COMMENT] cy8ctmg110 for review From: Samuli Konttila samuli.kontt...@aavamobile.com Add support for the cy8ctmg110 capacitive touchscreen used on some embedded devices. (Some clean up by Alan Cox) (No signed off, not yet ready to go in) --- drivers/input/touchscreen/Kconfig

Re: [PATCH 0/4] Various intel small device drivers

2010-04-14 Thread Jean Delvare
Hi Alan, On Wed, 14 Apr 2010 13:51:30 +0100, Alan Cox wrote: These have been through my clean up processing, in particular the accelerometers are now using the input layer infrastructure. --- Kalhan Trisal (4): emc1403: thermal sensor support liss331d1: accelerometer

Re:

2010-04-14 Thread Jean Delvare
On Wed, 14 Apr 2010 13:54:02 +0100, Alan Cox wrote: Subject: [FOR COMMENT] cy8ctmg110 for review From: Samuli Konttila samuli.kontt...@aavamobile.com Add support for the cy8ctmg110 capacitive touchscreen used on some embedded devices. (Some clean up by Alan Cox) (No signed off, not

Re: [PATCH 0/4] Various intel small device drivers

2010-04-14 Thread Jonathan Cameron
On 04/14/10 14:49, Alan Cox wrote: Kalhan Trisal (4): emc1403: thermal sensor support liss331d1: accelerometer driver isl29020: ambient light sensor hmc6352: Add driver for the HMC6352 compass The liss331d1, isl29020 and hmc6352 are not hardware monitoring drivers

Re: [PATCH 1/4] hmc6352: Add driver for the HMC6352 compass

2010-04-14 Thread Jonathan Cameron
Hi Alan, Kalhan, Couple of comments below. On 04/14/10 13:51, Alan Cox wrote: From: Kalhan Trisal kalhan.tri...@intel.com This driver will report the heading values in degrees to the sysfs interface. The values returned are headings . e.g. 245.6 (Some cleanups from Alan Cox)

Re: [PATCH 0/4] Various intel small device drivers

2010-04-14 Thread Alan Cox
If you like, feel free to (re)start an argument with Linus on the ambient light sensor front. Or see that thread for yet another round about discussion of where these sensors should be. http://lkml.org/lkml/2010/3/1/367 Basically if it is primarily an input device for human

Re: [PATCH 1/4] hmc6352: Add driver for the HMC6352 compass

2010-04-14 Thread Alan Cox
This is in no way a hwmon chip. Surely misc is a better location for now (pending the usual discussion about all singing all dancing sensors frameworks). Yep it's moving at the moment +#include linux/module.h +#include linux/init.h +#include linux/slab.h +#include linux/i2c.h

Re: [PATCH 1/4] hmc6352: Add driver for the HMC6352 compass

2010-04-14 Thread Jonathan Cameron
On 04/14/10 15:32, Alan Cox wrote: This is in no way a hwmon chip. Surely misc is a better location for now (pending the usual discussion about all singing all dancing sensors frameworks). Yep it's moving at the moment +#include linux/module.h +#include linux/init.h +#include

Re: [PATCH 1/4] hmc6352: Add driver for the HMC6352 compass

2010-04-14 Thread Alan Cox
Ripping it out of hwmon and applying the hedge trimmers to everything not needed and we get this for drivers/misc. I've also swapped the command codes to characters as the datasheet specifies them in ascii. 8-- hmc6352: Add driver for

Re: [PATCH 1/4] hmc6352: Add driver for the HMC6352 compass

2010-04-14 Thread Jonathan Cameron
Looks good to me, Acked-by: Jonathan Cameron ji...@cam.ac.uk On 04/14/10 16:19, Alan Cox wrote: Ripping it out of hwmon and applying the hedge trimmers to everything not needed and we get this for drivers/misc. I've also swapped the command codes to characters as the datasheet specifies them

isl29020: ALS driver as misc device

2010-04-14 Thread Alan Cox
And this adds the isl29020 as a misc device per discussions isl29020: ambient light sensor From: Kalhan Trisal kalhan.tri...@intel.com The LS driver will read the latest Lux measurement based upon the light brightness and will report the LUX output through sysfs interface. This hardware isn't

Re: isl29020: ALS driver as misc device

2010-04-14 Thread Greg KH
On Wed, Apr 14, 2010 at 05:56:02PM +0100, Alan Cox wrote: And this adds the isl29020 as a misc device per discussions isl29020: ambient light sensor From: Kalhan Trisal kalhan.tri...@intel.com The LS driver will read the latest Lux measurement based upon the light brightness and will

Re: cy8ctmg110 for review

2010-04-14 Thread Randy Dunlap
On Wed, 14 Apr 2010 13:54:02 +0100 Alan Cox wrote: Subject: [FOR COMMENT] cy8ctmg110 for review From: Samuli Konttila samuli.kontt...@aavamobile.com Add support for the cy8ctmg110 capacitive touchscreen used on some embedded devices. (Some clean up by Alan Cox) (No signed off, not

Re: cy8ctmg110 for review

2010-04-14 Thread Joe Perches
On Wed, 2010-04-14 at 13:54 +0100, Alan Cox wrote: Subject: [FOR COMMENT] cy8ctmg110 for review From: Samuli Konttila samuli.kontt...@aavamobile.com Add support for the cy8ctmg110 capacitive touchscreen used on some embedded devices. (Some clean up by Alan Cox) Some more cleanups.

Re: [PATCH 1/4] hmc6352: Add driver for the HMC6352 compass

2010-04-14 Thread Joe Perches
Trivial neatening Argument alignment Spacing Make chars static Remove prefixes from dev_level logging Signed-off-by: Joe Perches j...@perches.com --- drivers/misc/hmc6352.c | 44 ++-- 1 files changed, 22 insertions(+), 22 deletions(-) diff --git

Re: [PATCH 3/4] liss331d1: accelerometer driver

2010-04-14 Thread Éric Piel
Op 14-04-10 14:52, Alan Cox schreef: From: Kalhan Trisal kalhan.tri...@intel.com The acceleremeter driver reads the x,y,z coordinate registers and provides the information to user through the input layer Conversion to input device, clean up and porting of retry fixes needed for AAVA done

Re: [PATCH 3/4] liss331d1: accelerometer driver

2010-04-14 Thread Daniel Mack
On Thu, Apr 15, 2010 at 12:12:21AM +0200, Éric Piel wrote: Op 14-04-10 14:52, Alan Cox schreef: From: Kalhan Trisal kalhan.tri...@intel.com The acceleremeter driver reads the x,y,z coordinate registers and provides the information to user through the input layer Conversion to input

Re: [PATCH 2/4] isl29020: ambient light sensor

2010-04-14 Thread Daniel Mack
On Wed, Apr 14, 2010 at 01:51:49PM +0100, Alan Cox wrote: The LS driver will read the latest Lux measurement based upon the light brightness and will report the LUX output through sysfs interface. Signed-off-by: Kalhan Trisal kalhan.tri...@intel.com Signed-off-by: Alan Cox