Files
ubports_kernel_google_msm/include/linux/keyreset.h
Arve Hjønnevåg 42e58cb244 input: Add keyreset driver.
Add a platform device in the board file to specify a reset key-combo.
The first time the key-combo is detected a work function that syncs
the filesystems is scheduled. If all the keys are released and then
pressed again, it calls panic. Reboot on panic should be set for
this to work.

Change-Id: I9d54283ca1fba45e4b1ae1a407524cdda8171143
Signed-off-by: Arve Hjønnevåg <arve@android.com>
2012-04-09 13:53:16 -07:00

29 lines
812 B
C

/*
* include/linux/keyreset.h - platform data structure for resetkeys driver
*
* Copyright (C) 2008 Google, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef _LINUX_KEYRESET_H
#define _LINUX_KEYRESET_H
#define KEYRESET_NAME "keyreset"
struct keyreset_platform_data {
int (*reset_fn)(void);
int *keys_up;
int keys_down[]; /* 0 terminated */
};
#endif /* _LINUX_KEYRESET_H */