Lines Matching refs:val_l
404 u8 value, val_h, val_l; in lt7911d_get_detected_timings() local
420 val_l = i2c_rd8(sd, HTOTAL_L); in lt7911d_get_detected_timings()
421 htotal = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
423 val_l = i2c_rd8(sd, VTOTAL_L); in lt7911d_get_detected_timings()
424 vtotal = (val_h << 8) | val_l; in lt7911d_get_detected_timings()
426 val_l = i2c_rd8(sd, HACT_L); in lt7911d_get_detected_timings()
427 hact = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
429 val_l = i2c_rd8(sd, VACT_L); in lt7911d_get_detected_timings()
430 vact = (val_h << 8) | val_l; in lt7911d_get_detected_timings()
432 val_l = i2c_rd8(sd, HS_L); in lt7911d_get_detected_timings()
433 hs = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
437 val_l = i2c_rd8(sd, HFP_L); in lt7911d_get_detected_timings()
438 hfp = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()
442 val_l = i2c_rd8(sd, HBP_L); in lt7911d_get_detected_timings()
443 hbp = ((val_h << 8) | val_l) * 2; in lt7911d_get_detected_timings()