* uart_handle_dcd_change - handle a change of carrier detect state
* @uport: uart_port structure for the open port
* @status: new carrier detect status, nonzero if active
+ *
+ * Caller must hold uport->lock
*/
void uart_handle_dcd_change(struct uart_port *uport, unsigned int status)
{
struct tty_struct *tty = port->tty;
struct tty_ldisc *ld;
+ lockdep_assert_held_once(&uport->lock);
+
if (tty) {
ld = tty_ldisc_ref(tty);
if (ld) {
* uart_handle_cts_change - handle a change of clear-to-send state
* @uport: uart_port structure for the open port
* @status: new clear to send status, nonzero if active
+ *
+ * Caller must hold uport->lock
*/
void uart_handle_cts_change(struct uart_port *uport, unsigned int status)
{
struct tty_port *port = &uport->state->port;
struct tty_struct *tty = port->tty;
+ lockdep_assert_held_once(&uport->lock);
+
uport->icount.cts++;
if (tty_port_cts_enabled(port)) {