diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-01-13 10:18:24 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-01-13 10:18:24 +0000 |
commit | 21742847bd842fd7a2e7ba60854b38e09a287260 (patch) | |
tree | 7b492895c81562f3b840e1f67b3bfcce728aade6 /target/linux/generic-2.6/files/include | |
parent | 29653e24671ed2a0f8f6000fb27c1caa1d229194 (diff) | |
download | mtk-20170518-21742847bd842fd7a2e7ba60854b38e09a287260.zip mtk-20170518-21742847bd842fd7a2e7ba60854b38e09a287260.tar.gz mtk-20170518-21742847bd842fd7a2e7ba60854b38e09a287260.tar.bz2 |
kernel: change debounce logic in the gpio-buttons driver
* thanks to Nuno Gonçalves
SVN-Revision: 19115
Diffstat (limited to 'target/linux/generic-2.6/files/include')
-rw-r--r-- | target/linux/generic-2.6/files/include/linux/gpio_buttons.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target/linux/generic-2.6/files/include/linux/gpio_buttons.h b/target/linux/generic-2.6/files/include/linux/gpio_buttons.h index f5e6297..f85b993 100644 --- a/target/linux/generic-2.6/files/include/linux/gpio_buttons.h +++ b/target/linux/generic-2.6/files/include/linux/gpio_buttons.h @@ -1,7 +1,7 @@ /* * Definitions for the GPIO buttons interface driver * - * Copyright (C) 2007,2008 Gabor Juhos <juhosg at openwrt.org> + * Copyright (C) 2007-2010 Gabor Juhos <juhosg@openwrt.org> * * This file was based on: /include/linux/gpio_keys.h * The original gpio_keys.h seems not to have a license. @@ -21,7 +21,6 @@ struct gpio_button { char *desc; /* button description */ int type; /* input event type (EV_KEY, EV_SW) */ int code; /* input event code (KEY_*, SW_*) */ - int count; int threshold; /* count threshold */ }; @@ -32,4 +31,3 @@ struct gpio_buttons_platform_data { }; #endif /* _GPIO_BUTTONS_H_ */ - |