Symbol: cx_andor
drivers/media/pci/cx23885/cx23885.h
504
#define cx_set(reg, bit) cx_andor((reg), (bit), (bit))
drivers/media/pci/cx23885/cx23885.h
505
#define cx_clear(reg, bit) cx_andor((reg), (bit), 0)
drivers/media/pci/cx23885/cx23888-ir.c
156
cx_andor(addr, ~and_mask, or_value);
drivers/media/pci/cx25821/cx25821.h
357
#define cx_set(reg, bit) cx_andor((reg), (bit), (bit))
drivers/media/pci/cx25821/cx25821.h
358
#define cx_clear(reg, bit) cx_andor((reg), (bit), 0)
drivers/media/pci/cx88/cx88-core.c
594
cx_andor(MO_COLOR_CTRL, 0x4000, 0x4000);
drivers/media/pci/cx88/cx88-core.c
744
cx_andor(MO_FILTER_EVEN, 0x7ffc7f, value); /* preserve PEAKEN, PSEL */
drivers/media/pci/cx88/cx88-core.c
745
cx_andor(MO_FILTER_ODD, 0x7ffc7f, value);
drivers/media/pci/cx88/cx88-core.c
870
cx_andor(MO_AFECFG_IO, 0x1f, 0x0);
drivers/media/pci/cx88/cx88-core.c
949
cx_andor(MO_INPUT_FORMAT, 0x40f,
drivers/media/pci/cx88/cx88-core.c
994
cx_andor(MO_HTOTAL, 0x07ff, htotal);
drivers/media/pci/cx88/cx88-tvaudio.c
982
cx_andor(AUD_CTL, mask, ctl);
drivers/media/pci/cx88/cx88-video.c
291
cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input).vmux << 14);
drivers/media/pci/cx88/cx88-video.c
632
cx_andor(MO_FILTER_EVEN, mask, value);
drivers/media/pci/cx88/cx88-video.c
648
cx_andor(cc->reg, mask, value);
drivers/media/pci/cx88/cx88-video.c
697
cx_andor(cc->reg, mask, value);
drivers/media/pci/cx88/cx88.h
591
#define cx_set(reg, bit) cx_andor((reg), (bit), (bit))
drivers/media/pci/cx88/cx88.h
592
#define cx_clear(reg, bit) cx_andor((reg), (bit), 0)