The patch titled lis3: add missing constants for 8bit device has been added to the -mm tree. Its filename is lis3-add-missing-constants-for-8bit-device.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lis3: add missing constants for 8bit device From: Samu Onkalo <samu.p.onkalo@xxxxxxxxx> Lis3 accelerometer chip family changes for power management, click and threshold event handling. Patch set adds interrupt handlers for click/tap events and threshold based events. Actual configuration which events are enabled is done via platform data. All the features cannot be used in parallel. Interrupts are implemented only for 8 bit device, since I'm not familiar with other devices and I don't have suitable testing environment. Changes: lis3: Add missing constants for 8bit device This is quite clear. Some click feature related register definitions were missing. lis3: Separate configuration function for 8 bit device Move platformdata based configurations for 8 bit device to separate function to keep common part little bit more readable. lis3: Introduce platform data for second ff / wu unit 8 bit device has two freefall / wakeup detection blocks. Add possibility to configure also the second unit. Change hipass filter configuration to platform data. Change is compatible with existing platform data. lis3: Power control for the chip This kind of feature has been in the driver earlier. It was removed because saving was so small in laptop environment. However, in smaller devices, even a small saving need to be implemented. When driver detects that no-one is really interested about the acceleration, chip is powered down. Input device, freefall device and sysfs are controlling this. By default, chip is powered on to keep functionality similar to current implementation. lis3: Add skeletons for interrupt handlers Interrupt handlers are added in two patches to keep changes cleaner. This first patch adds two dummy threaded interrupt handlers for 8 bit device. lis3: Interrupt handlers for 8bit wakeup and click events This patch adds content to dummy handlers. Depending on the chip configuration, either click or ff/wu handling is called. For click event, BTN input event is sent separately for each axes. For threshold event, coordinates are updated immediatelly to input device. This allows input device to be used either in polled mode and / or interrupt driven mode. Polling can stopped from userspace by via input device sysfs. This patch: Definitions for click were missing. Signed-off-by: Samu Onkalo <samu.p.onkalo@xxxxxxxxx> Cc: Eric Piel <Eric.Piel@xxxxxxxxxxxxxxxx> Cc: Pavel Machek <pavel@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/lis3lv02d.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff -puN drivers/hwmon/lis3lv02d.h~lis3-add-missing-constants-for-8bit-device drivers/hwmon/lis3lv02d.h --- a/drivers/hwmon/lis3lv02d.h~lis3-add-missing-constants-for-8bit-device +++ a/drivers/hwmon/lis3lv02d.h @@ -196,6 +196,16 @@ enum lis3lv02d_dd_src { DD_SRC_IA = 0x40, }; +enum lis3lv02d_click_src_8b { + CLICK_SINGLE_X = 0x01, + CLICK_DOUBLE_X = 0x02, + CLICK_SINGLE_Y = 0x04, + CLICK_DOUBLE_Y = 0x08, + CLICK_SINGLE_Z = 0x10, + CLICK_DOUBLE_Z = 0x20, + CLICK_IA = 0x40, +}; + struct axis_conversion { s8 x; s8 y; _ Patches currently in -mm which might be from samu.p.onkalo@xxxxxxxxx are lis3-add-missing-constants-for-8bit-device.patch lis3-separate-configuration-function-for-8-bit-device.patch lis3-introduce-platform-data-for-second-ff-wu-unit.patch lis3-power-control-for-the-chip.patch lis3-add-skeletons-for-interrupt-handlers.patch lis3-interrupt-handlers-for-8bit-wakeup-and-click-events.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html