Lines Matching refs:prescaler_exp
131 static int ltc294x_reset(const struct ltc294x_info *info, int prescaler_exp) in ltc294x_reset() argument
145 control = LTC294X_REG_CONTROL_PRESCALER_SET(prescaler_exp) | in ltc294x_reset()
378 u32 prescaler_exp; in ltc294x_i2c_probe() local
404 &prescaler_exp); in ltc294x_i2c_probe()
408 prescaler_exp = LTC2941_MAX_PRESCALER_EXP; in ltc294x_i2c_probe()
412 if (prescaler_exp > LTC2943_MAX_PRESCALER_EXP) in ltc294x_i2c_probe()
413 prescaler_exp = LTC2943_MAX_PRESCALER_EXP; in ltc294x_i2c_probe()
415 (4096 / (1 << (2*prescaler_exp))); in ltc294x_i2c_probe()
417 if (prescaler_exp > LTC2941_MAX_PRESCALER_EXP) in ltc294x_i2c_probe()
418 prescaler_exp = LTC2941_MAX_PRESCALER_EXP; in ltc294x_i2c_probe()
420 (128 / (1 << prescaler_exp)); in ltc294x_i2c_probe()
447 ret = ltc294x_reset(info, prescaler_exp); in ltc294x_i2c_probe()