Lines Matching defs:bits
536 void locomo_gpio_set_dir(struct device *dev, unsigned int bits, unsigned int dir)
549 r |= bits;
551 r &= ~bits;
556 r |= bits;
558 r &= ~bits;
565 int locomo_gpio_read_level(struct device *dev, unsigned int bits)
578 ret &= bits;
583 int locomo_gpio_read_output(struct device *dev, unsigned int bits)
596 ret &= bits;
601 void locomo_gpio_write(struct device *dev, unsigned int bits, unsigned int set)
614 r |= bits;
616 r &= ~bits;