summaryrefslogtreecommitdiff
path: root/target/linux/x86/patches-3.3
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2013-07-19 13:20:39 +0000
committerJonas Gorski <jogo@openwrt.org>2013-07-19 13:20:39 +0000
commit960002ed4b148cffa7e2562ff4536d3708342765 (patch)
tree1f19607e10dd595d5d2ac0d27032ffc773e9d606 /target/linux/x86/patches-3.3
parent6db050194e7a91bce270b61f35b75f0dcf0d556d (diff)
downloadmtk-20170518-960002ed4b148cffa7e2562ff4536d3708342765.zip
mtk-20170518-960002ed4b148cffa7e2562ff4536d3708342765.tar.gz
mtk-20170518-960002ed4b148cffa7e2562ff4536d3708342765.tar.bz2
x86: switch rdc to to gpio_keys_polled
gpio_buttons have been deprecated since a long time. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 37435
Diffstat (limited to 'target/linux/x86/patches-3.3')
-rw-r--r--target/linux/x86/patches-3.3/100-rdc_boards.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/x86/patches-3.3/100-rdc_boards.patch b/target/linux/x86/patches-3.3/100-rdc_boards.patch
index 958bee0..b3cbda2 100644
--- a/target/linux/x86/patches-3.3/100-rdc_boards.patch
+++ b/target/linux/x86/patches-3.3/100-rdc_boards.patch
@@ -67,7 +67,7 @@
+
+/* Button */
+static struct platform_device rdc321x_buttons = {
-+ .name = "gpio-buttons",
++ .name = "gpio-keys-polled",
+ .id = -1,
+ .dev = {
+ .platform_data = &rdcplat_data.button_data,
@@ -187,7 +187,7 @@
+static struct gpio_led ar525w_leds[] = {
+ { .name = "rdc321x:dmz", .gpio = 1, .active_low = 1},
+};
-+static struct gpio_button ar525w_btns[] = {
++static struct gpio_keys_button ar525w_btns[] = {
+ {
+ .gpio = 6,
+ .code = BTN_0,
@@ -584,7 +584,7 @@
+ { .name = "rdc321x:usb1", .gpio = 1, .active_low = 1},
+};
+
-+static struct gpio_button sitecom_btns[] = {
++static struct gpio_keys_button sitecom_btns[] = {
+ {
+ .gpio = 6,
+ .code = BTN_0,
@@ -731,11 +731,11 @@
+#define _RDC_BOARDS_H__
+
+#include <linux/leds.h>
-+#include <linux/gpio_buttons.h>
++#include <linux/gpio_keys.h>
+
+struct rdc_platform_data {
+ struct gpio_led_platform_data led_data;
-+ struct gpio_buttons_platform_data button_data;
++ struct gpio_keys_platform_data button_data;
+};
+
+#endif