mtk_gpio_w32      101 drivers/gpio/gpio-mt7621.c 		mtk_gpio_w32(rg, GPIO_REG_STAT, BIT(bit));
mtk_gpio_w32      122 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_REDGE, rise | (BIT(pin) & rg->rising));
mtk_gpio_w32      123 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_FEDGE, fall | (BIT(pin) & rg->falling));
mtk_gpio_w32      124 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_HLVL, high | (BIT(pin) & rg->hlevel));
mtk_gpio_w32      125 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_LLVL, low | (BIT(pin) & rg->llevel));
mtk_gpio_w32      143 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_FEDGE, fall & ~BIT(pin));
mtk_gpio_w32      144 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_REDGE, rise & ~BIT(pin));
mtk_gpio_w32      145 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_HLVL, high & ~BIT(pin));
mtk_gpio_w32      146 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_LLVL, low & ~BIT(pin));
mtk_gpio_w32      287 drivers/gpio/gpio-mt7621.c 	mtk_gpio_w32(rg, GPIO_REG_POL, 0);