Home | History | Annotate | Download | only in libupload

Lines Matching defs:divisor

32     unsigned int divisor;
58 divisor = 1; /* Default speed = 115200 bps */
66 divisor = sci->divisor;
73 divisor = 115200/strtoul(argv[1], NULL, 0);
83 outb(0x83, port + LCR); /* Enable divisor access */
86 outb(divisor, port + DLL);
87 outb(divisor >> 8, port + DLM);
102 if (dll != (uint8_t)divisor ||
103 dlm != (uint8_t)(divisor >> 8) ||