Home
last modified time | relevance | path

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

/linux-2.4.37.9/arch/ppc64/kernel/
Dnvram.c45 static char nvram_buf[NVRW_CNT]; /* assume this is in the first 4GB */
187 if (count <= NVRW_CNT) { in __read_nvram()
190 remainder = count % NVRW_CNT; in __read_nvram()
205 count -= NVRW_CNT) { in __read_nvram()
207 NVRW_CNT) != 0) || len != NVRW_CNT) { in __read_nvram()
211 memcpy(p, nvram_buf, NVRW_CNT); in __read_nvram()
213 p += NVRW_CNT; in __read_nvram()
214 i += NVRW_CNT; in __read_nvram()
242 if (count <= NVRW_CNT) { in __write_nvram()
245 remainder = count % NVRW_CNT; in __write_nvram()
[all …]
/linux-2.4.37.9/include/asm-ppc64/
Dnvram.h14 #define NVRW_CNT 0x20 macro