Searched refs:tmpval2 (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/ti/ |
H A D | if_ti.c | 627 uint32_t tmpval, tmpval2; in ti_copy_mem() local 649 tmpval2 = ntohl(tmpval); in ti_copy_mem() 659 error = copyout(&tmpval2, ptr, resid); in ti_copy_mem() 662 bcopy(&tmpval2, ptr, resid); in ti_copy_mem() 677 error = copyin(ptr, &tmpval2, resid); in ti_copy_mem() 680 bcopy(ptr, &tmpval2, resid); in ti_copy_mem() 683 tmpval = htonl(tmpval2); in ti_copy_mem() 701 uint32_t tmpval, tmpval2; in ti_copy_scratch() local 730 tmpval2 = CSR_READ_4(sc, CPU_REG(TI_SRAM_DATA, cpu)); in ti_copy_scratch() 732 tmpval = ntohl(tmpval2); in ti_copy_scratch() [all …]
|