tegra-tcu.c (762f99f4f3cb41a775b5157dd761217beba65873) | tegra-tcu.c (bec5b814d46c2a704c3c8148752e62a33e9fa6dc) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. 4 */ 5 6#include <linux/console.h> 7#include <linux/mailbox_client.h> 8#include <linux/module.h> --- 112 unchanged lines hidden (view full) --- 121} 122 123static void tegra_tcu_uart_shutdown(struct uart_port *port) 124{ 125} 126 127static void tegra_tcu_uart_set_termios(struct uart_port *port, 128 struct ktermios *new, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. 4 */ 5 6#include <linux/console.h> 7#include <linux/mailbox_client.h> 8#include <linux/module.h> --- 112 unchanged lines hidden (view full) --- 121} 122 123static void tegra_tcu_uart_shutdown(struct uart_port *port) 124{ 125} 126 127static void tegra_tcu_uart_set_termios(struct uart_port *port, 128 struct ktermios *new, |
129 struct ktermios *old) | 129 const struct ktermios *old) |
130{ 131} 132 133static const struct uart_ops tegra_tcu_uart_ops = { 134 .tx_empty = tegra_tcu_uart_tx_empty, 135 .set_mctrl = tegra_tcu_uart_set_mctrl, 136 .get_mctrl = tegra_tcu_uart_get_mctrl, 137 .stop_tx = tegra_tcu_uart_stop_tx, --- 166 unchanged lines hidden --- | 130{ 131} 132 133static const struct uart_ops tegra_tcu_uart_ops = { 134 .tx_empty = tegra_tcu_uart_tx_empty, 135 .set_mctrl = tegra_tcu_uart_set_mctrl, 136 .get_mctrl = tegra_tcu_uart_get_mctrl, 137 .stop_tx = tegra_tcu_uart_stop_tx, --- 166 unchanged lines hidden --- |