Lines Matching refs:val_h
388 u8 value, val_h, val_l; in lt6911uxc_get_detected_timings() local
408 i2c_rd8(sd, INT_STATUS_86A3, &val_h); in lt6911uxc_get_detected_timings()
410 v4l2_info(sd, "int status REG_86A3:%#x, REG_86A5:%#x\n", val_h, val_l); in lt6911uxc_get_detected_timings()
431 i2c_rd8(sd, HTOTAL_H, &val_h); in lt6911uxc_get_detected_timings()
433 htotal = ((val_h << 8) | val_l) * 2; in lt6911uxc_get_detected_timings()
434 i2c_rd8(sd, VTOTAL_H, &val_h); in lt6911uxc_get_detected_timings()
436 vtotal = (val_h << 8) | val_l; in lt6911uxc_get_detected_timings()
437 i2c_rd8(sd, HACT_H, &val_h); in lt6911uxc_get_detected_timings()
439 hact = ((val_h << 8) | val_l) * 2; in lt6911uxc_get_detected_timings()
440 i2c_rd8(sd, VACT_H, &val_h); in lt6911uxc_get_detected_timings()
442 vact = (val_h << 8) | val_l; in lt6911uxc_get_detected_timings()
443 i2c_rd8(sd, HS_H, &val_h); in lt6911uxc_get_detected_timings()
445 hs = ((val_h << 8) | val_l) * 2; in lt6911uxc_get_detected_timings()
448 i2c_rd8(sd, HFP_H, &val_h); in lt6911uxc_get_detected_timings()
450 hfp = ((val_h << 8) | val_l) * 2; in lt6911uxc_get_detected_timings()
453 i2c_rd8(sd, HBP_H, &val_h); in lt6911uxc_get_detected_timings()
455 hbp = ((val_h << 8) | val_l) * 2; in lt6911uxc_get_detected_timings()
469 i2c_rd8(sd, AUDIO_SAMPLE_RATAE_H, &val_h); in lt6911uxc_get_detected_timings()
471 lt6911uxc->audio_sampling_rate = ((val_h << 8) | val_l) + 2; in lt6911uxc_get_detected_timings()