Home
last modified time | relevance | path

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

/drivers/rtc/
Drtc-ds1305.c83 #define DS1305_NVRAM_LEN 96 /* bytes of NVRAM */ macro
541 if (unlikely(off >= DS1305_NVRAM_LEN)) in ds1305_nvram_read()
543 if (count >= DS1305_NVRAM_LEN) in ds1305_nvram_read()
544 count = DS1305_NVRAM_LEN; in ds1305_nvram_read()
545 if ((off + count) > DS1305_NVRAM_LEN) in ds1305_nvram_read()
546 count = DS1305_NVRAM_LEN - off; in ds1305_nvram_read()
572 if (unlikely(off >= DS1305_NVRAM_LEN)) in ds1305_nvram_write()
574 if (count >= DS1305_NVRAM_LEN) in ds1305_nvram_write()
575 count = DS1305_NVRAM_LEN; in ds1305_nvram_write()
576 if ((off + count) > DS1305_NVRAM_LEN) in ds1305_nvram_write()
[all …]