Lines Matching full:alert
30 /* Alert GPIO pin */
32 /* NCT38XX devices which share the same alert pin */
34 /* Number of NCT38XX devices on the alert pin */
40 /* Alert handler device */
42 /* Alert pin callback */
44 /* Alert worker */
62 uint16_t alert, mask; in nct38xx_alert_is_active() local
66 /* Clear alert */ in nct38xx_alert_is_active()
67 ret = i2c_burst_read_dt(mfd->i2c_dev, NCT38XX_REG_ALERT, (uint8_t *)&alert, in nct38xx_alert_is_active()
68 sizeof(alert)); in nct38xx_alert_is_active()
78 alert &= mask; in nct38xx_alert_is_active()
79 if (alert) { in nct38xx_alert_is_active()
81 (uint8_t *)&alert, sizeof(alert)); in nct38xx_alert_is_active()
92 if (alert & BIT(NCT38XX_REG_ALERT_VENDOR_DEFINDED_ALERT)) { in nct38xx_alert_is_active()
135 /* Set the alert pin for handling the interrupt */ in nct38xx_alert_init()
157 /* NCT38XX alert driver must be initialized after NCT38XX GPIO driver */