Lines Matching refs:pcf8523
49 struct pcf8523 { struct
161 struct pcf8523 *pcf8523 = i2c_get_clientdata(dev_id); in pcf8523_irq() local
165 err = pcf8523_read(pcf8523->client, PCF8523_REG_CONTROL2, &value); in pcf8523_irq()
171 pcf8523_write(pcf8523->client, PCF8523_REG_CONTROL2, value); in pcf8523_irq()
172 rtc_update_irq(pcf8523->rtc, 1, RTC_IRQF | RTC_AF); in pcf8523_irq()
487 struct pcf8523 *pcf8523; in pcf8523_probe() local
495 pcf8523 = devm_kzalloc(&client->dev, sizeof(struct pcf8523), GFP_KERNEL); in pcf8523_probe()
496 if (!pcf8523) in pcf8523_probe()
499 i2c_set_clientdata(client, pcf8523); in pcf8523_probe()
500 pcf8523->client = client; in pcf8523_probe()
515 pcf8523->rtc = rtc; in pcf8523_probe()