Home
last modified time | relevance | path

Searched refs:ntxec_reg8 (Results 1 – 3 of 3) sorted by relevance

/linux-5.19.10/drivers/pwm/
Dpwm-ntxec.c75 { NTXEC_REG_PERIOD_HIGH, ntxec_reg8(period >> 8) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
76 { NTXEC_REG_DUTY_HIGH, ntxec_reg8(duty >> 8) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
77 { NTXEC_REG_PERIOD_LOW, ntxec_reg8(period) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
78 { NTXEC_REG_DUTY_LOW, ntxec_reg8(duty) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
114 res = regmap_write(priv->ec->regmap, NTXEC_REG_ENABLE, ntxec_reg8(1)); in ntxec_pwm_apply()
119 res = regmap_write(priv->ec->regmap, NTXEC_REG_AUTO_OFF_HI, ntxec_reg8(0xff)); in ntxec_pwm_apply()
123 return regmap_write(priv->ec->regmap, NTXEC_REG_AUTO_OFF_LO, ntxec_reg8(0xff)); in ntxec_pwm_apply()
125 return regmap_write(priv->ec->regmap, NTXEC_REG_ENABLE, ntxec_reg8(0)); in ntxec_pwm_apply()
/linux-5.19.10/drivers/rtc/
Drtc-ntxec.c91 { NTXEC_REG_WRITE_SECOND, ntxec_reg8(0) }, in ntxec_set_time()
92 { NTXEC_REG_WRITE_YEAR, ntxec_reg8(tm->tm_year - 100) }, in ntxec_set_time()
93 { NTXEC_REG_WRITE_MONTH, ntxec_reg8(tm->tm_mon + 1) }, in ntxec_set_time()
94 { NTXEC_REG_WRITE_DAY, ntxec_reg8(tm->tm_mday) }, in ntxec_set_time()
95 { NTXEC_REG_WRITE_HOUR, ntxec_reg8(tm->tm_hour) }, in ntxec_set_time()
96 { NTXEC_REG_WRITE_MINUTE, ntxec_reg8(tm->tm_min) }, in ntxec_set_time()
97 { NTXEC_REG_WRITE_SECOND, ntxec_reg8(tm->tm_sec) }, in ntxec_set_time()
/linux-5.19.10/include/linux/mfd/
Dntxec.h29 static inline u16 ntxec_reg8(u8 value) in ntxec_reg8() function