Searched refs:soff_hi (Results 1 - 1 of 1) sorted by relevance

/linux-4.4.14/drivers/mtd/devices/
H A Dpmc551.c142 u32 soff_hi, soff_lo; /* start address offset hi/lo */ pmc551_erase() local
155 soff_hi = instr->addr & ~(priv->asize - 1); pmc551_erase()
162 if (soff_hi == eoff_hi || mtd->size == priv->asize) { pmc551_erase()
169 while (soff_hi != eoff_hi) { pmc551_erase()
171 printk(KERN_DEBUG "pmc551_erase() soff_hi: %ld, " pmc551_erase()
172 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi); pmc551_erase()
175 if (soff_hi + priv->asize >= mtd->size) { pmc551_erase()
178 soff_hi += priv->asize; pmc551_erase()
179 pmc551_point(mtd, (priv->base_map0 | soff_hi), pmc551_erase()
200 u32 soff_hi; pmc551_point() local
207 soff_hi = from & ~(priv->asize - 1); pmc551_point()
213 (priv->base_map0 | soff_hi)); pmc551_point()
214 priv->curr_map0 = soff_hi; pmc551_point()
234 u32 soff_hi, soff_lo; /* start address offset hi/lo */ pmc551_read() local
246 soff_hi = from & ~(priv->asize - 1); pmc551_read()
253 if (soff_hi == eoff_hi) { pmc551_read()
261 while (soff_hi != eoff_hi) { pmc551_read()
263 printk(KERN_DEBUG "pmc551_read() soff_hi: %ld, " pmc551_read()
264 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi); pmc551_read()
268 if (soff_hi + priv->asize >= mtd->size) { pmc551_read()
271 soff_hi += priv->asize; pmc551_read()
272 pmc551_point(mtd, soff_hi, priv->asize, retlen, pmc551_read()
291 u32 soff_hi, soff_lo; /* start address offset hi/lo */ pmc551_write() local
303 soff_hi = to & ~(priv->asize - 1); pmc551_write()
310 if (soff_hi == eoff_hi) { pmc551_write()
318 while (soff_hi != eoff_hi) { pmc551_write()
320 printk(KERN_DEBUG "pmc551_write() soff_hi: %ld, " pmc551_write()
321 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi); pmc551_write()
325 if (soff_hi >= mtd->size) { pmc551_write()
328 soff_hi += priv->asize; pmc551_write()
329 pmc551_point(mtd, soff_hi, priv->asize, retlen, pmc551_write()

Completed in 50 milliseconds