Lines Matching refs:ceiling
26 u32 ceiling;
62 ret = regmap_write(priv->regmap, STM32_LPTIM_ARR, priv->ceiling);
265 return snprintf(buf, PAGE_SIZE, "%u\n", priv->ceiling);
274 unsigned int ceiling;
280 ret = kstrtouint(buf, 0, &ceiling);
284 if (ceiling > STM32_LPTIM_MAX_ARR)
287 priv->ceiling = ceiling;
299 .name = "ceiling",
436 priv->ceiling = STM32_LPTIM_MAX_ARR;