diff options
| author | Russell King <rmk@flint.arm.linux.org.uk> | 2003-09-09 15:15:57 +0100 |
|---|---|---|
| committer | Russell King <rmk@flint.arm.linux.org.uk> | 2003-09-09 15:15:57 +0100 |
| commit | d5a45662a10e72d0efdfc6014b9a06de5e146345 (patch) | |
| tree | 33cf0931f4c22b4f60eb6ac243924a620bcf06e8 /include | |
| parent | da2df98ad49d10f90976f8e574e335dcf6610fd6 (diff) | |
[SERIAL] Drop "level" argument from serial PM calls.
Since the driver model has transitioned away from using multi-level
device suspend/resume, we also drop the multi-level support from
the serial layer.
Update the 8250 and sa1100 drivers for this change.
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/serial_core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 0bc15aeb153e..8e09c20be413 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -325,8 +325,8 @@ int uart_remove_one_port(struct uart_driver *reg, struct uart_port *port); /* * Power Management */ -int uart_suspend_port(struct uart_driver *reg, struct uart_port *port, u32 level); -int uart_resume_port(struct uart_driver *reg, struct uart_port *port, u32 level); +int uart_suspend_port(struct uart_driver *reg, struct uart_port *port); +int uart_resume_port(struct uart_driver *reg, struct uart_port *port); #define uart_circ_empty(circ) ((circ)->head == (circ)->tail) #define uart_circ_clear(circ) ((circ)->head = (circ)->tail = 0) |
