Linux Kernel
3.7.1
|
#include <stdarg.h>
#include <stddef.h>
#include "types.h"
#include "string.h"
#include "stdio.h"
#include "io.h"
#include "ops.h"
Go to the source code of this file.
Macros | |
#define | UART_DLL 0 /* Out: Divisor Latch Low */ |
#define | UART_DLM 1 /* Out: Divisor Latch High */ |
#define | UART_FCR 2 /* Out: FIFO Control Register */ |
#define | UART_LCR 3 /* Out: Line Control Register */ |
#define | UART_MCR 4 /* Out: Modem Control Register */ |
#define | UART_LSR 5 /* In: Line Status Register */ |
#define | UART_LSR_THRE 0x20 /* Transmit-hold-register empty */ |
#define | UART_LSR_DR 0x01 /* Receiver data ready */ |
#define | UART_MSR 6 /* In: Modem Status Register */ |
#define | UART_SCR 7 /* I/O: Scratch Register */ |
Functions | |
int | ns16550_console_init (void *devp, struct serial_console_data *scdp) |
#define UART_LSR_THRE 0x20 /* Transmit-hold-register empty */ |