Searched refs:debounce (Results 1 - 25 of 29) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-w90x900/include/mach/
H A Dw90p910_keypad.h12 unsigned int debounce; member in struct:w90p910_keypad_platform_data
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-ep93xx/include/mach/
H A Dep93xx_keypad.h21 * @debounce: debounce start count; terminal count is 0xff
27 unsigned int debounce; member in struct:ep93xx_keypad_platform_data
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/
H A Dgpio_input.c37 uint8_t debounce; member in struct:gpio_key_state
62 uint8_t debounce; local
68 debounce = key_state->debounce;
69 if (debounce & DEBOUNCE_WAIT_IRQ)
71 if (key_state->debounce & DEBOUNCE_UNSTABLE) {
72 debounce = key_state->debounce = DEBOUNCE_UNKNOWN;
75 "(%d) continue debounce\n",
81 if (debounce
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dpush-switch.h12 /* debounce timer */
13 struct timer_list debounce; member in struct:push_switch
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/drivers/
H A Dpush-switch.c81 init_timer(&psw->debounce);
83 psw->debounce.function = switch_timer;
84 psw->debounce.data = (unsigned long)psw;
111 del_timer_sync(&psw->debounce);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/touchscreen/
H A Dmk712.c85 static int debounce = 1; local
94 debounce = 1;
99 debounce = 1;
104 if (debounce) {
105 debounce = 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpio/
H A Dtwl4030-gpio.c376 static int __devinit gpio_twl4030_debounce(u32 debounce, u8 mmc_cd) argument
383 message[1] = (debounce & 0xff) | (mmc_cd & 0x03);
384 debounce >>= 8;
385 message[2] = (debounce & 0xff);
386 debounce >>= 8;
387 message[3] = (debounce & 0x03);
427 ret = gpio_twl4030_debounce(pdata->debounce, pdata->mmc_cd);
429 dev_dbg(&pdev->dev, "debounce %.03x %.01x --> %d\n",
430 pdata->debounce, pdata->mmc_cd,
H A Dwm831x-gpio.c112 unsigned debounce)
132 if (debounce >= 32 && debounce <= 64)
134 else if (debounce >= 4000 && debounce <= 8000)
111 wm831x_gpio_set_debounce(struct gpio_chip *chip, unsigned offset, unsigned debounce) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/asm-generic/
H A Dgpio.h107 unsigned offset, unsigned debounce);
156 extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dgpio.h55 static inline int gpio_set_debounce(unsigned gpio, unsigned debounce) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/include/asm/
H A Dbfin_rotary.h40 unsigned short debounce; /* 0..17 */ member in struct:bfin_rotary_platform_data
H A Dgpio.h282 static inline int gpio_set_debounce(unsigned gpio, unsigned debounce) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/sgi-ip22/
H A Dip22-reset.c99 static void debounce(unsigned long data) function
152 debounce_timer.function = debounce;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/sgi-ip32/
H A Dip32-reset.c92 static void debounce(unsigned long data) function
151 debounce_timer.function = debounce;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/boards/mach-highlander/
H A Dpsw.c39 if (psw->state) /* debounce */
40 mod_timer(&psw->debounce, jiffies + 50);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/boards/mach-landisk/
H A Dpsw.c39 mod_timer(&psw->debounce, jiffies + 50);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mfd/
H A Dwm8350-gpio.c189 int pol, int pull, int invert, int debounce)
213 if (gpio_set_debounce(wm8350, gpio, debounce))
188 wm8350_gpio_config(struct wm8350 *wm8350, int gpio, int dir, int func, int pol, int pull, int invert, int debounce) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-omap/
H A Dgpio.c630 * _set_gpio_debounce - low level gpio debounce time
633 * @debounce: debounce time to use
635 * OMAP's debounce time is in 31us steps so we need
639 unsigned debounce)
645 if (debounce < 32)
646 debounce = 0x01;
647 else if (debounce > 7936)
648 debounce = 0xff;
650 debounce
638 _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio, unsigned debounce) argument
1640 gpio_debounce(struct gpio_chip *chip, unsigned offset, unsigned debounce) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/keyboard/
H A Dlm8323.c338 int debounce = lm->debounce_time >> 2; local
342 * Active time must be greater than the debounce time: if it's
345 if (debounce >= active)
346 active = debounce + 3;
352 lm8323_write(lm, 2, LM8323_CMD_SET_DEBOUNCE, debounce);
H A Dw90p910_keypad.c103 config = pdata->prescale | (pdata->debounce << DEBOUNCE_BIT);
H A Dep93xx_keypad.c153 val |= ((pdata->debounce << KEY_INIT_DBNC_SHIFT) & KEY_INIT_DBNC_MASK);
H A Domap-keypad.c63 unsigned int debounce; member in struct:omap_kp
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/misc/
H A Dbfin_rotary.c176 bfin_write_CNT_DEBOUNCE(pdata->debounce & DPRESCALE);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/mfd/wm8350/
H A Dgpio.h350 int pol, int pull, int invert, int debounce);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-w90x900/
H A Ddev.c396 .debounce = 0x50,

Completed in 148 milliseconds

12