gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:in_b from mtkernel_3/device/ser/sysdepend/rx231/ser_rx231.c (0.00 seconds)
mtkernel_3
device/ser/sysdepend/rx231/ser_rx231.c - 9.0KB - 299 lines
86: 
87:         data = in_b(ba[unit] + SCI_RDR);
88:         dev_ser_notify_rcv(unit, data);        /* Notify the main process of data reception. */
101: 102: ssr = in_b(ba[unit] + SCI_SSR); 103: out_b(ba[unit] + SCI_SSR, 0); /* Clear error */
119: out_b( ba[unit] + SCI_SCMR, 0xF2); 120: data = in_b( ba[unit] + SCI_SEMR); 121: out_b( ba[unit] + SCI_SEMR, (data & ~SCI_SEMR_ABCS) | (speed & SCI_SEMR_ABCS));
212: /* Clear Interrupt */ 213: in_b(ba[unit] + SCI_SSR); 214: out_b(ba[unit] + SCI_SSR, 0xC0);
231: case LLD_SER_SEND: 232: if((in_b( ba[unit] + SCI_SSR) & SCI_SSR_TDRF) != 0) { 233: out_b(ba[unit] + SCI_TDR, (UB)parm);