Lines Matching refs:com8
1419 unsigned char com8 = 0, v; in ov7670_s_brightness() local
1421 ov7670_read(sd, REG_COM8, &com8); in ov7670_s_brightness()
1422 com8 &= ~COM8_AEC; in ov7670_s_brightness()
1423 ov7670_write(sd, REG_COM8, com8); in ov7670_s_brightness()
1486 unsigned char com8; in ov7670_s_gain() local
1492 ret = ov7670_read(sd, REG_COM8, &com8); in ov7670_s_gain()
1495 return ov7670_write(sd, REG_COM8, com8 & ~COM8_AGC); in ov7670_s_gain()
1504 unsigned char com8; in ov7670_s_autogain() local
1506 ret = ov7670_read(sd, REG_COM8, &com8); in ov7670_s_autogain()
1509 com8 |= COM8_AGC; in ov7670_s_autogain()
1511 com8 &= ~COM8_AGC; in ov7670_s_autogain()
1512 ret = ov7670_write(sd, REG_COM8, com8); in ov7670_s_autogain()
1520 unsigned char com1, com8, aech, aechh; in ov7670_s_exp() local
1523 ov7670_read(sd, REG_COM8, &com8) + in ov7670_s_exp()
1536 ret = ov7670_write(sd, REG_COM8, com8 & ~COM8_AEC); in ov7670_s_exp()
1547 unsigned char com8; in ov7670_s_autoexp() local
1549 ret = ov7670_read(sd, REG_COM8, &com8); in ov7670_s_autoexp()
1552 com8 |= COM8_AEC; in ov7670_s_autoexp()
1554 com8 &= ~COM8_AEC; in ov7670_s_autoexp()
1555 ret = ov7670_write(sd, REG_COM8, com8); in ov7670_s_autoexp()