Lines Matching defs:bits
537 void locomo_gpio_set_dir(struct device *dev, unsigned int bits, unsigned int dir)
550 r |= bits;
552 r &= ~bits;
557 r |= bits;
559 r &= ~bits;
566 int locomo_gpio_read_level(struct device *dev, unsigned int bits)
579 ret &= bits;
584 int locomo_gpio_read_output(struct device *dev, unsigned int bits)
597 ret &= bits;
602 void locomo_gpio_write(struct device *dev, unsigned int bits, unsigned int set)
615 r |= bits;
617 r &= ~bits;