From 5c8a4212a704139521c9ab8cc9cd7e52fc645ed6 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 12 Jan 2010 03:10:03 +0000 Subject: [PATCH 1/7] mac80211: upgrade to a new unofficial snapshot based on wireless-testing+wireless-2.6 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19110 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/mac80211/Makefile | 12 ++-- .../patches/530-mac80211_queue_fix.patch | 69 ------------------- ..._fix.patch => 530-mac80211_work_fix.patch} | 0 ...e.patch => 540-wds_assoc_dummyframe.patch} | 0 .../550-mac80211_action_frame_fix.patch | 26 ------- ...lookup.patch => 550-vlan_sta_lookup.patch} | 0 ...check.patch => 560-4addr_vlan_check.patch} | 0 package/mac80211/patches/590-endian_fix.patch | 15 ---- .../600-monitor_select_queue_fix.patch | 26 ------- 9 files changed, 6 insertions(+), 142 deletions(-) delete mode 100644 package/mac80211/patches/530-mac80211_queue_fix.patch rename package/mac80211/patches/{540-mac80211_work_fix.patch => 530-mac80211_work_fix.patch} (100%) rename package/mac80211/patches/{560-wds_assoc_dummyframe.patch => 540-wds_assoc_dummyframe.patch} (100%) delete mode 100644 package/mac80211/patches/550-mac80211_action_frame_fix.patch rename package/mac80211/patches/{570-vlan_sta_lookup.patch => 550-vlan_sta_lookup.patch} (100%) rename package/mac80211/patches/{580-4addr_vlan_check.patch => 560-4addr_vlan_check.patch} (100%) delete mode 100644 package/mac80211/patches/590-endian_fix.patch delete mode 100644 package/mac80211/patches/600-monitor_select_queue_fix.patch diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index 652603af6..0f02b4835 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -10,12 +10,12 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=mac80211 -PKG_VERSION:=2010-01-07 -PKG_RELEASE:=8 -PKG_SOURCE_URL:= \ - http://www.orbit-lab.org/kernel/compat-wireless-2.6/2009/12 \ - http://wireless.kernel.org/download/compat-wireless-2.6 -PKG_MD5SUM:=f783d3d4a140a76855916b54fa18be47 +PKG_VERSION:=2010-01-11 +PKG_RELEASE:=1 +PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources +# http://www.orbit-lab.org/kernel/compat-wireless-2.6/2010/11 \ +# http://wireless.kernel.org/download/compat-wireless-2.6 +PKG_MD5SUM:=78a36bb7d28be7028f640a10eaa4692b PKG_SOURCE:=compat-wireless-$(PKG_VERSION).tar.bz2 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/compat-wireless-$(PKG_VERSION) diff --git a/package/mac80211/patches/530-mac80211_queue_fix.patch b/package/mac80211/patches/530-mac80211_queue_fix.patch deleted file mode 100644 index d84167392..000000000 --- a/package/mac80211/patches/530-mac80211_queue_fix.patch +++ /dev/null @@ -1,69 +0,0 @@ ---- a/net/mac80211/iface.c -+++ b/net/mac80211/iface.c -@@ -329,7 +329,7 @@ static int ieee80211_open(struct net_dev - if (sdata->vif.type == NL80211_IFTYPE_STATION) - ieee80211_queue_work(&local->hw, &sdata->u.mgd.work); - -- netif_start_queue(dev); -+ netif_tx_start_all_queues(dev); - - return 0; - err_del_interface: -@@ -357,7 +357,7 @@ static int ieee80211_stop(struct net_dev - /* - * Stop TX on this interface first. - */ -- netif_stop_queue(dev); -+ netif_tx_stop_all_queues(dev); - - /* - * Purge work for this interface. ---- a/net/mac80211/mlme.c -+++ b/net/mac80211/mlme.c -@@ -723,7 +723,7 @@ static void ieee80211_set_associated(str - ieee80211_recalc_smps(local, sdata); - mutex_unlock(&local->iflist_mtx); - -- netif_start_queue(sdata->dev); -+ netif_tx_start_all_queues(sdata->dev); - netif_carrier_on(sdata->dev); - } - -@@ -759,7 +759,7 @@ static void ieee80211_set_disassoc(struc - * time -- we don't want the scan code to enable queues. - */ - -- netif_stop_queue(sdata->dev); -+ netif_tx_stop_all_queues(sdata->dev); - netif_carrier_off(sdata->dev); - - rcu_read_lock(); ---- a/net/mac80211/offchannel.c -+++ b/net/mac80211/offchannel.c -@@ -113,7 +113,7 @@ void ieee80211_offchannel_stop_beaconing - */ - if (sdata->vif.type != NL80211_IFTYPE_STATION && - sdata->vif.type != NL80211_IFTYPE_MONITOR) -- netif_stop_queue(sdata->dev); -+ netif_tx_stop_all_queues(sdata->dev); - } - mutex_unlock(&local->iflist_mtx); - } -@@ -131,7 +131,7 @@ void ieee80211_offchannel_stop_station(s - continue; - - if (sdata->vif.type == NL80211_IFTYPE_STATION) { -- netif_stop_queue(sdata->dev); -+ netif_tx_stop_all_queues(sdata->dev); - if (sdata->u.mgd.associated) - ieee80211_offchannel_ps_enable(sdata); - } -@@ -153,7 +153,7 @@ void ieee80211_offchannel_return(struct - if (sdata->vif.type == NL80211_IFTYPE_STATION) { - if (sdata->u.mgd.associated) - ieee80211_offchannel_ps_disable(sdata); -- netif_wake_queue(sdata->dev); -+ netif_tx_wake_all_queues(sdata->dev); - } - - /* re-enable beaconing */ diff --git a/package/mac80211/patches/540-mac80211_work_fix.patch b/package/mac80211/patches/530-mac80211_work_fix.patch similarity index 100% rename from package/mac80211/patches/540-mac80211_work_fix.patch rename to package/mac80211/patches/530-mac80211_work_fix.patch diff --git a/package/mac80211/patches/560-wds_assoc_dummyframe.patch b/package/mac80211/patches/540-wds_assoc_dummyframe.patch similarity index 100% rename from package/mac80211/patches/560-wds_assoc_dummyframe.patch rename to package/mac80211/patches/540-wds_assoc_dummyframe.patch diff --git a/package/mac80211/patches/550-mac80211_action_frame_fix.patch b/package/mac80211/patches/550-mac80211_action_frame_fix.patch deleted file mode 100644 index 9283af64a..000000000 --- a/package/mac80211/patches/550-mac80211_action_frame_fix.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/net/mac80211/mlme.c -+++ b/net/mac80211/mlme.c -@@ -1451,7 +1451,9 @@ static void ieee80211_sta_rx_queued_mgmt - rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len); - break; - case IEEE80211_STYPE_ACTION: -- /* XXX: differentiate, can only happen for CSA now! */ -+ if (mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT) -+ break; -+ - ieee80211_sta_process_chanswitch(sdata, - &mgmt->u.action.u.chan_switch.sw_elem, - (void *)ifmgd->associated->priv); ---- a/net/mac80211/rx.c -+++ b/net/mac80211/rx.c -@@ -1934,6 +1934,10 @@ ieee80211_rx_h_action(struct ieee80211_r - } - break; - default: -+ /* do not process rejected action frames */ -+ if (mgmt->u.action.category & 0x80) -+ return RX_DROP_MONITOR; -+ - return RX_CONTINUE; - } - diff --git a/package/mac80211/patches/570-vlan_sta_lookup.patch b/package/mac80211/patches/550-vlan_sta_lookup.patch similarity index 100% rename from package/mac80211/patches/570-vlan_sta_lookup.patch rename to package/mac80211/patches/550-vlan_sta_lookup.patch diff --git a/package/mac80211/patches/580-4addr_vlan_check.patch b/package/mac80211/patches/560-4addr_vlan_check.patch similarity index 100% rename from package/mac80211/patches/580-4addr_vlan_check.patch rename to package/mac80211/patches/560-4addr_vlan_check.patch diff --git a/package/mac80211/patches/590-endian_fix.patch b/package/mac80211/patches/590-endian_fix.patch deleted file mode 100644 index 9381a6f43..000000000 --- a/package/mac80211/patches/590-endian_fix.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/net/mac80211/iface.c -+++ b/net/mac80211/iface.c -@@ -690,10 +690,10 @@ static u16 ieee80211_monitor_select_queu - return 0; - - if (skb->len < 4 || -- skb->len < rtap->it_len + 2 /* frame control */) -+ skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */) - return 0; /* doesn't matter, frame will be dropped */ - -- hdr = (void *)((u8 *)skb->data + rtap->it_len); -+ hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len)); - - if (!ieee80211_is_data(hdr->frame_control)) { - skb->priority = 7; diff --git a/package/mac80211/patches/600-monitor_select_queue_fix.patch b/package/mac80211/patches/600-monitor_select_queue_fix.patch deleted file mode 100644 index 9a3b1d47f..000000000 --- a/package/mac80211/patches/600-monitor_select_queue_fix.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/net/mac80211/iface.c -+++ b/net/mac80211/iface.c -@@ -685,6 +685,7 @@ static u16 ieee80211_monitor_select_queu - struct ieee80211_local *local = sdata->local; - struct ieee80211_hdr *hdr; - struct ieee80211_radiotap_header *rtap = (void *)skb->data; -+ u8 *p; - - if (local->hw.queues < 4) - return 0; -@@ -695,11 +696,14 @@ static u16 ieee80211_monitor_select_queu - - hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len)); - -- if (!ieee80211_is_data(hdr->frame_control)) { -+ if (!ieee80211_is_data_qos(hdr->frame_control)) { - skb->priority = 7; - return ieee802_1d_to_ac[skb->priority]; - } - -+ p = ieee80211_get_qos_ctl(hdr); -+ skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK; -+ - return ieee80211_downgrade_queue(local, skb); - } - From 82c39af536169cfc9e476ff66aa7bcd90a346bb7 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 12 Jan 2010 03:10:12 +0000 Subject: [PATCH 2/7] mac80211: another minor fix to monitor mode queue selection git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19111 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches/570-monitor_queue_select_fix.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 package/mac80211/patches/570-monitor_queue_select_fix.patch diff --git a/package/mac80211/patches/570-monitor_queue_select_fix.patch b/package/mac80211/patches/570-monitor_queue_select_fix.patch new file mode 100644 index 000000000..fc186c52a --- /dev/null +++ b/package/mac80211/patches/570-monitor_queue_select_fix.patch @@ -0,0 +1,18 @@ +--- a/net/mac80211/iface.c ++++ b/net/mac80211/iface.c +@@ -696,10 +696,14 @@ static u16 ieee80211_monitor_select_queu + + hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len)); + +- if (!ieee80211_is_data_qos(hdr->frame_control)) { ++ if (!ieee80211_is_data(hdr->frame_control)) { + skb->priority = 7; + return ieee802_1d_to_ac[skb->priority]; + } ++ if (!ieee80211_is_data_qos(hdr->frame_control)) { ++ skb->priority = 0; ++ return ieee802_1d_to_ac[skb->priority]; ++ } + + p = ieee80211_get_qos_ctl(hdr); + skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK; From 546023e7ae4db30ab0e9550a8126b63eb79cb2e1 Mon Sep 17 00:00:00 2001 From: lars Date: Wed, 13 Jan 2010 05:21:50 +0000 Subject: [PATCH 3/7] Fix libuuid header location and reenable building of mkfs.ubifs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19113 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- tools/libuuid/Makefile | 6 +++--- tools/mtd-utils/Makefile | 8 ++++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/tools/libuuid/Makefile b/tools/libuuid/Makefile index 672591fe1..4e6602e48 100644 --- a/tools/libuuid/Makefile +++ b/tools/libuuid/Makefile @@ -36,13 +36,13 @@ define Host/Compile endef define Host/Install - $(INSTALL_DIR) $(STAGING_DIR_HOST)/{lib,include} - $(CP) $(HOST_BUILD_DIR)/lib/uuid/uuid.h $(STAGING_DIR_HOST)/include/ + $(INSTALL_DIR) $(STAGING_DIR_HOST)/{lib,include/uuid} + $(CP) $(HOST_BUILD_DIR)/lib/uuid/uuid.h $(STAGING_DIR_HOST)/include/uuid/ $(CP) $(HOST_BUILD_DIR)/lib/uuid/libuuid.{so*,a} $(STAGING_DIR_HOST)/lib/ endef define Host/Clean - rm -f $(STAGING_DIR_HOST)/include/uuid.h + rm -f $(STAGING_DIR_HOST)/include/uuid/uuid.h rm -f $(STAGING_DIR_HOST)/lib/uuid/libuuid.{so*,a} $(call Host/Clean/Default) endef diff --git a/tools/mtd-utils/Makefile b/tools/mtd-utils/Makefile index 69b7b159d..8938614e7 100644 --- a/tools/mtd-utils/Makefile +++ b/tools/mtd-utils/Makefile @@ -21,7 +21,7 @@ HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/host-build.mk -CFLAGS := $(HOST_CFLAGS) -I$(HOST_BUILD_DIR)/include -L$(HOST_BUILD_DIR) +CFLAGS := $(HOST_CFLAGS) -I$(HOST_BUILD_DIR)/include -L$(HOST_BUILD_DIR) -L$(STAGING_DIR_HOST)/lib ifneq ($(HOST_OS),Linux) CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h endif @@ -39,17 +39,21 @@ define Host/Compile $(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \ $(MTD_MAKEOPTS) \ TARGETS=ubinize + $(MAKE) -C $(HOST_BUILD_DIR)/mkfs.ubifs \ + $(MTD_MAKEOPTS) \ + BUILDDIR="$(HOST_BUILD_DIR)/mkfs.ubifs" endef define Host/Install $(CP) \ $(HOST_BUILD_DIR)/mkfs.jffs2 \ + $(HOST_BUILD_DIR)/mkfs.ubifs/mkfs.ubifs \ $(HOST_BUILD_DIR)/ubinize \ $(STAGING_DIR_HOST)/bin/ endef define Host/Clean - rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,ubinize} + rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,mkfs.ubifs,ubinize} endef $(eval $(call HostBuild)) From f7245e386e2b66cefa24016c28c54d460b7ac062 Mon Sep 17 00:00:00 2001 From: juhosg Date: Wed, 13 Jan 2010 06:52:12 +0000 Subject: [PATCH 4/7] ar71xx: fix 320S33B flash chip support git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19114 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../106-mtd_m25p80_add_xxxs33b_support.patch | 15 +++++++++++++++ .../109-mtd-wrt160nl-trx-parser.patch | 2 +- .../106-mtd_m25p80_add_xxxs33b_support.patch | 15 +++++++++++++++ .../109-mtd-wrt160nl-trx-parser.patch | 2 +- .../106-mtd_m25p80_add_xxxs33b_support.patch | 15 +++++++++++++++ .../109-mtd-wrt160nl-trx-parser.patch | 2 +- 6 files changed, 48 insertions(+), 3 deletions(-) diff --git a/target/linux/ar71xx/patches-2.6.30/106-mtd_m25p80_add_xxxs33b_support.patch b/target/linux/ar71xx/patches-2.6.30/106-mtd_m25p80_add_xxxs33b_support.patch index 68f17596f..5bd20a769 100644 --- a/target/linux/ar71xx/patches-2.6.30/106-mtd_m25p80_add_xxxs33b_support.patch +++ b/target/linux/ar71xx/patches-2.6.30/106-mtd_m25p80_add_xxxs33b_support.patch @@ -12,3 +12,18 @@ /* PMC -- pm25x "blocks" are 32K, sectors are 4K */ { "pm25lv512", 0, 32 * 1024, 2, SECT_4K }, { "pm25lv010", 0, 32 * 1024, 4, SECT_4K }, +@@ -656,11 +661,12 @@ static int __devinit m25p_probe(struct s + dev_set_drvdata(&spi->dev, flash); + + /* +- * Atmel serial flash tend to power up ++ * Atmel and Intel/Numonyx serial flash tend to power up + * with the software protection bits set + */ + +- if (info->jedec_id >> 16 == 0x1f) { ++ if (info->jedec_id >> 16 == 0x1f || ++ info->jedec_id >> 16 == 0x89) { + write_enable(flash); + write_sr(flash, 0); + } diff --git a/target/linux/ar71xx/patches-2.6.30/109-mtd-wrt160nl-trx-parser.patch b/target/linux/ar71xx/patches-2.6.30/109-mtd-wrt160nl-trx-parser.patch index 749c1d70d..5696d3965 100644 --- a/target/linux/ar71xx/patches-2.6.30/109-mtd-wrt160nl-trx-parser.patch +++ b/target/linux/ar71xx/patches-2.6.30/109-mtd-wrt160nl-trx-parser.patch @@ -1,6 +1,6 @@ --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c -@@ -751,6 +751,16 @@ static int __devinit m25p_probe(struct s +@@ -752,6 +752,16 @@ static int __devinit m25p_probe(struct s part_probes, &parts, 0); } #endif diff --git a/target/linux/ar71xx/patches-2.6.31/106-mtd_m25p80_add_xxxs33b_support.patch b/target/linux/ar71xx/patches-2.6.31/106-mtd_m25p80_add_xxxs33b_support.patch index e4e01637d..dfd855a49 100644 --- a/target/linux/ar71xx/patches-2.6.31/106-mtd_m25p80_add_xxxs33b_support.patch +++ b/target/linux/ar71xx/patches-2.6.31/106-mtd_m25p80_add_xxxs33b_support.patch @@ -12,3 +12,18 @@ /* PMC -- pm25x "blocks" are 32K, sectors are 4K */ { "pm25lv512", 0, 32 * 1024, 2, SECT_4K }, { "pm25lv010", 0, 32 * 1024, 4, SECT_4K }, +@@ -660,11 +665,12 @@ static int __devinit m25p_probe(struct s + dev_set_drvdata(&spi->dev, flash); + + /* +- * Atmel serial flash tend to power up ++ * Atmel and Intel/Numonyx serial flash tend to power up + * with the software protection bits set + */ + +- if (info->jedec_id >> 16 == 0x1f) { ++ if (info->jedec_id >> 16 == 0x1f || ++ info->jedec_id >> 16 == 0x89) { + write_enable(flash); + write_sr(flash, 0); + } diff --git a/target/linux/ar71xx/patches-2.6.31/109-mtd-wrt160nl-trx-parser.patch b/target/linux/ar71xx/patches-2.6.31/109-mtd-wrt160nl-trx-parser.patch index 4ab53a48d..ccf4b66b6 100644 --- a/target/linux/ar71xx/patches-2.6.31/109-mtd-wrt160nl-trx-parser.patch +++ b/target/linux/ar71xx/patches-2.6.31/109-mtd-wrt160nl-trx-parser.patch @@ -1,6 +1,6 @@ --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c -@@ -755,6 +755,16 @@ static int __devinit m25p_probe(struct s +@@ -756,6 +756,16 @@ static int __devinit m25p_probe(struct s part_probes, &parts, 0); } #endif diff --git a/target/linux/ar71xx/patches-2.6.32/106-mtd_m25p80_add_xxxs33b_support.patch b/target/linux/ar71xx/patches-2.6.32/106-mtd_m25p80_add_xxxs33b_support.patch index 01be5dbb4..8f1a842be 100644 --- a/target/linux/ar71xx/patches-2.6.32/106-mtd_m25p80_add_xxxs33b_support.patch +++ b/target/linux/ar71xx/patches-2.6.32/106-mtd_m25p80_add_xxxs33b_support.patch @@ -12,3 +12,18 @@ /* PMC -- pm25x "blocks" are 32K, sectors are 4K */ { "pm25lv512", 0, 32 * 1024, 2, SECT_4K }, { "pm25lv010", 0, 32 * 1024, 4, SECT_4K }, +@@ -789,11 +794,12 @@ static int __devinit m25p_probe(struct s + dev_set_drvdata(&spi->dev, flash); + + /* +- * Atmel serial flash tend to power up ++ * Atmel and Intel/Numonyx serial flash tend to power up + * with the software protection bits set + */ + +- if (info->jedec_id >> 16 == 0x1f) { ++ if (info->jedec_id >> 16 == 0x1f || ++ info->jedec_id >> 16 == 0x89) { + write_enable(flash); + write_sr(flash, 0); + } diff --git a/target/linux/ar71xx/patches-2.6.32/109-mtd-wrt160nl-trx-parser.patch b/target/linux/ar71xx/patches-2.6.32/109-mtd-wrt160nl-trx-parser.patch index 4136db8e9..b4eab674a 100644 --- a/target/linux/ar71xx/patches-2.6.32/109-mtd-wrt160nl-trx-parser.patch +++ b/target/linux/ar71xx/patches-2.6.32/109-mtd-wrt160nl-trx-parser.patch @@ -1,6 +1,6 @@ --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c -@@ -889,6 +889,16 @@ static int __devinit m25p_probe(struct s +@@ -890,6 +890,16 @@ static int __devinit m25p_probe(struct s part_probes, &parts, 0); } #endif From 1fc2b717c59f1ce91c385c443705aad5e77c08df Mon Sep 17 00:00:00 2001 From: juhosg Date: Wed, 13 Jan 2010 10:18:24 +0000 Subject: [PATCH 5/7] kernel: change debounce logic in the gpio-buttons driver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * thanks to Nuno Gonçalves git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19115 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../files/drivers/input/misc/gpio_buttons.c | 42 +++++++++++-------- .../files/include/linux/gpio_buttons.h | 4 +- 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/target/linux/generic-2.6/files/drivers/input/misc/gpio_buttons.c b/target/linux/generic-2.6/files/drivers/input/misc/gpio_buttons.c index 83a817834..e4e0e339d 100644 --- a/target/linux/generic-2.6/files/drivers/input/misc/gpio_buttons.c +++ b/target/linux/generic-2.6/files/drivers/input/misc/gpio_buttons.c @@ -1,7 +1,8 @@ /* * Driver for buttons on GPIO lines not capable of generating interrupts * - * Copyright (C) 2007,2008 Gabor Juhos + * Copyright (C) 2007-2010 Gabor Juhos + * Copyright (C) 2010 Nuno Goncalves * * This file was based on: /drivers/input/misc/cobalt_btns.c * Copyright (C) 2007 Yoichi Yuasa @@ -29,12 +30,18 @@ #include #define DRV_NAME "gpio-buttons" -#define DRV_VERSION "0.1.1" +#define DRV_VERSION "0.1.2" #define PFX DRV_NAME ": " +struct gpio_button_data { + int last_state; + int count; +}; + struct gpio_buttons_dev { struct input_polled_dev *poll_dev; struct gpio_buttons_platform_data *pdata; + struct gpio_button_data *data; }; static void gpio_buttons_poll(struct input_polled_dev *dev) @@ -49,22 +56,18 @@ static void gpio_buttons_poll(struct input_polled_dev *dev) unsigned int type = button->type ?: EV_KEY; int state; - state = gpio_get_value(button->gpio) ? 1 : 0; - state ^= button->active_low; - - if (state) { - button->count++; - } else { - if (button->count >= button->threshold) { - input_event(input, type, button->code, 1); - input_sync(input); - } - button->count = 0; + if (bdev->data[i].count < button->threshold) { + bdev->data[i].count++; + continue; } - if (button->count == button->threshold) { - input_event(input, type, button->code, 0); + state = gpio_get_value(button->gpio) ? 1 : 0; + if (state != bdev->data[i].last_state) { + input_event(input, type, button->code, + !!(state ^ button->active_low)); input_sync(input); + bdev->data[i].count = 0; + bdev->data[i].last_state = state; } } } @@ -77,16 +80,19 @@ static int __devinit gpio_buttons_probe(struct platform_device *pdev) struct input_dev *input; int error, i; - if (!pdata) return -ENXIO; - bdev = kzalloc(sizeof(*bdev), GFP_KERNEL); + bdev = kzalloc(sizeof(struct gpio_buttons_dev) + + sizeof(struct gpio_button_data) * pdata->nbuttons, + GFP_KERNEL); if (!bdev) { printk(KERN_ERR DRV_NAME "no memory for device\n"); return -ENOMEM; } + bdev->data = (struct gpio_button_data *) &bdev[1]; + poll_dev = input_allocate_polled_device(); if (!poll_dev) { printk(KERN_ERR DRV_NAME "no memory for polled device\n"); @@ -131,7 +137,7 @@ static int __devinit gpio_buttons_probe(struct platform_device *pdev) } input_set_capability(input, type, button->code); - button->count = 0; + bdev->data[i].last_state = gpio_get_value(button->gpio) ? 1 : 0; } bdev->poll_dev = poll_dev; 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 f5e629725..f85b993ed 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 + * Copyright (C) 2007-2010 Gabor Juhos * * 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_ */ - From e26560bfe1624f9e698016902f757cc90ad4a1e4 Mon Sep 17 00:00:00 2001 From: juhosg Date: Wed, 13 Jan 2010 10:18:30 +0000 Subject: [PATCH 6/7] ar71xx: reduce button threshold values git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19116 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap81.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap83.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c | 4 ++-- .../linux/ar71xx/files/arch/mips/ar71xx/mach-dir-600-a1.c | 4 ++-- .../linux/ar71xx/files/arch/mips/ar71xx/mach-dir-615-c1.c | 4 ++-- .../linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w04nu.c | 6 +++--- .../linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c | 6 +++--- target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb42.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb44.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb-4xx.c | 2 +- .../linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c | 4 ++-- .../linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c | 4 ++-- .../linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr741nd.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr841n.c | 4 ++-- .../linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-wndr3700.c | 6 +++--- target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt160nl.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c | 4 ++-- 22 files changed, 46 insertions(+), 46 deletions(-) diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap81.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap81.c index daf7dcf9f..6fa950f70 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap81.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap81.c @@ -92,14 +92,14 @@ static struct gpio_button ap81_gpio_buttons[] __initdata = { .desc = "sw1", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = AP81_GPIO_BTN_SW1, .active_low = 1, } , { .desc = "sw4", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = AP81_GPIO_BTN_SW4, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap83.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap83.c index cd4746ba7..72c001631 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap83.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ap83.c @@ -120,14 +120,14 @@ static struct gpio_button ap83_gpio_buttons[] __initdata = { .desc = "soft_reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = AP83_GPIO_BTN_RESET, .active_low = 1, } , { .desc = "jumpstart", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = AP83_GPIO_BTN_JUMPSTART, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c index 5cee4c6ea..a6f1daf46 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-aw-nr580.c @@ -62,14 +62,14 @@ static struct gpio_button aw_nr580_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = AW_NR580_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = AW_NR580_GPIO_BTN_WPS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-600-a1.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-600-a1.c index d76e9b649..68f182268 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-600-a1.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-600-a1.c @@ -92,14 +92,14 @@ static struct gpio_button dir_600_a1_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = DIR_600_A1_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = DIR_600_A1_GPIO_BTN_WPS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-615-c1.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-615-c1.c index d6f1fa75d..5eb594c31 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-615-c1.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-615-c1.c @@ -117,13 +117,13 @@ static struct gpio_button dir_615c1_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = DIR_615C1_GPIO_BTN_RESET, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = DIR_615C1_GPIO_BTN_WPS, } }; diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c index 80ab33084..e80a992b4 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-dir-825-b1.c @@ -117,14 +117,14 @@ static struct gpio_button dir825b1_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = DIR825B1_GPIO_BTN_RESET, .active_low = 1, } , { .desc = "powersave", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = DIR825B1_GPIO_BTN_POWERSAVE, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w04nu.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w04nu.c index 6af5dd4cd..1e5a93381 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w04nu.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w04nu.c @@ -106,21 +106,21 @@ static struct gpio_button mzk_w04nu_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = MZK_W04NU_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = MZK_W04NU_GPIO_BTN_WPS, .active_low = 1, }, { .desc = "aprouter", .type = EV_KEY, .code = BTN_2, - .threshold = 5, + .threshold = 3, .gpio = MZK_W04NU_GPIO_BTN_APROUTER, .active_low = 0, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c index 88a3bd17b..3a38c8285 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c @@ -105,21 +105,21 @@ static struct gpio_button mzk_w300nh_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = MZK_W300NH_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = MZK_W300NH_GPIO_BTN_WPS, .active_low = 1, }, { .desc = "aprouter", .type = EV_KEY, .code = BTN_2, - .threshold = 5, + .threshold = 3, .gpio = MZK_W300NH_GPIO_BTN_APROUTER, .active_low = 0, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb42.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb42.c index 44bf38991..96a976f8a 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb42.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb42.c @@ -28,14 +28,14 @@ static struct gpio_button pb42_gpio_buttons[] __initdata = { .desc = "sw4", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = PB42_GPIO_BTN_SW4, .active_low = 1, } , { .desc = "sw5", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = PB42_GPIO_BTN_SW5, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb44.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb44.c index 7cace674b..052884f5c 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb44.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-pb44.c @@ -95,14 +95,14 @@ static struct gpio_button pb44_gpio_buttons[] __initdata = { .desc = "soft_reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = PB44_GPIO_SW_RESET, .active_low = 1, } , { .desc = "jumpstart", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = PB44_GPIO_SW_JUMP, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb-4xx.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb-4xx.c index ab3d65be9..2392c3dc6 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb-4xx.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb-4xx.c @@ -43,7 +43,7 @@ static struct gpio_button rb4xx_gpio_buttons[] __initdata = { .desc = "reset_switch", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = RB4XX_GPIO_RESET_SWITCH, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c index c92cb00eb..4abb8e4ed 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c @@ -93,13 +93,13 @@ static struct gpio_button tew_632brp_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = TEW_632BRP_GPIO_BTN_RESET, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = TEW_632BRP_GPIO_BTN_WPS, } }; diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c index 79bb22713..03508dbab 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c @@ -91,14 +91,14 @@ static struct gpio_button tl_wr1043nd_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = TL_WR1043ND_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "qss", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = TL_WR1043ND_GPIO_BTN_QSS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr741nd.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr741nd.c index b2d33c0d7..e5d977639 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr741nd.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr741nd.c @@ -80,14 +80,14 @@ static struct gpio_button tl_wr741nd_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = TL_WR741ND_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "qss", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = TL_WR741ND_GPIO_BTN_QSS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr841n.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr841n.c index 3bc063ae5..9f9e3c6e8 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr841n.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr841n.c @@ -84,14 +84,14 @@ static struct gpio_button tl_wr841n_v1_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = TL_WR841ND_V1_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "qss", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = TL_WR841ND_V1_GPIO_BTN_QSS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c index 0f4277ea0..67af5b0f1 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr941nd.c @@ -84,14 +84,14 @@ static struct gpio_button tl_wr941nd_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = TL_WR941ND_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "qss", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = TL_WR941ND_GPIO_BTN_QSS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c index 37151ab02..5b1c504f3 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c @@ -105,7 +105,7 @@ static struct gpio_button ubnt_gpio_buttons[] __initdata = { .desc = "sw4", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = UBNT_RS_GPIO_SW4, .active_low = 1, } @@ -116,7 +116,7 @@ static struct gpio_button ubnt_m_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = UBNT_M_GPIO_BTN_RESET, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wndr3700.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wndr3700.c index 14cde55d2..b289d9d72 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wndr3700.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wndr3700.c @@ -126,19 +126,19 @@ static struct gpio_button wndr3700_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = WNDR3700_GPIO_BTN_RESET, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = WNDR3700_GPIO_BTN_WPS, } , { .desc = "wifi", .type = EV_KEY, .code = BTN_2, - .threshold = 5, + .threshold = 3, .gpio = WNDR3700_GPIO_BTN_WIFI, } }; diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c index 778e99d71..bf4be8946 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wnr2000.c @@ -103,13 +103,13 @@ static struct gpio_button wnr2000_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = WNR2000_GPIO_BTN_RESET, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = WNR2000_GPIO_BTN_WPS, } }; diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c index a2669f17a..bf8b9f562 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c @@ -61,13 +61,13 @@ static struct gpio_button wp543_gpio_buttons[] __initdata = { .desc = "sw6", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = WP543_GPIO_SW6, }, { .desc = "sw4", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = WP543_GPIO_SW4, } }; diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt160nl.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt160nl.c index 9c85235ea..7fb97d979 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt160nl.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt160nl.c @@ -101,14 +101,14 @@ static struct gpio_button wrt160nl_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = WRT160NL_GPIO_BTN_RESET, .active_low = 1, }, { .desc = "wps", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = WRT160NL_GPIO_BTN_WPS, .active_low = 1, } diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c index 465b6c612..3d50afcbb 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wrt400n.c @@ -115,14 +115,14 @@ static struct gpio_button wrt400n_gpio_buttons[] __initdata = { .desc = "reset", .type = EV_KEY, .code = BTN_0, - .threshold = 5, + .threshold = 3, .gpio = WRT400N_GPIO_BTN_RESET, .active_low = 1, } , { .desc = "wlsec", .type = EV_KEY, .code = BTN_1, - .threshold = 5, + .threshold = 3, .gpio = WRT400N_GPIO_BTN_WLSEC, .active_low = 1, } From 90cf7545665105c1d7bc16335b8cc4e68071483f Mon Sep 17 00:00:00 2001 From: lars Date: Wed, 13 Jan 2010 13:14:35 +0000 Subject: [PATCH 7/7] mtd-utils depends on libuuid git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19117 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Makefile b/tools/Makefile index 5f77606f1..3d1989210 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -41,6 +41,7 @@ $(curdir)/dtc/compile := $(curdir)/bison/install $(curdir)/autoconf/compile := $(curdir)/m4/install $(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/mpfr/compile := $(curdir)/gmp/install +$(curdir)/mtd-utils/compile := $(curdir)/libuuid/install $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-) $(curdir)/builddirs-default := $(tools-y)