Lines Matching refs:val_h
404 u8 value, val_h, val_l; in lt7911d_get_detected_timings() local
419 val_h = i2c_rd8(sd, HTOTAL_H); in lt7911d_get_detected_timings()
421 htotal = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
422 val_h = i2c_rd8(sd, VTOTAL_H); in lt7911d_get_detected_timings()
424 vtotal = (val_h << 8) | val_l; in lt7911d_get_detected_timings()
425 val_h = i2c_rd8(sd, HACT_H); in lt7911d_get_detected_timings()
427 hact = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
428 val_h = i2c_rd8(sd, VACT_H); in lt7911d_get_detected_timings()
430 vact = (val_h << 8) | val_l; in lt7911d_get_detected_timings()
431 val_h = i2c_rd8(sd, HS_H); in lt7911d_get_detected_timings()
433 hs = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
436 val_h = i2c_rd8(sd, HFP_H); in lt7911d_get_detected_timings()
438 hfp = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
441 val_h = i2c_rd8(sd, HBP_H); in lt7911d_get_detected_timings()
443 hbp = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()