Commit 4ee0e366 authored by Mathias Nyman's avatar Mathias Nyman Committed by Greg Kroah-Hartman
Browse files

xhci: dbc: remove endpoint pointers from dbc_port structure



dbctty no longer needs references directly to dbc endpoints,
so remove them

Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
Link: https://lore.kernel.org/r/20200723144530.9992-24-mathias.nyman@linux.intel.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e0aa56dc
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -110,8 +110,6 @@ struct dbc_port {
	struct kfifo			write_fifo;

	bool				registered;
	struct dbc_ep			*in;
	struct dbc_ep			*out;
};

struct xhci_dbc {
+0 −2
Original line number Diff line number Diff line
@@ -426,8 +426,6 @@ xhci_dbc_tty_init_port(struct xhci_dbc *dbc, struct dbc_port *port)
	INIT_LIST_HEAD(&port->read_queue);
	INIT_LIST_HEAD(&port->write_pool);

	port->in =		get_in_ep(dbc);
	port->out =		get_out_ep(dbc);
	port->port.ops =	&dbc_port_ops;
	port->n_read =		0;
}