| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * tegra20_das.h - Definitions for Tegra20 DAS driver |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Author: Stephen Warren <swarren@nvidia.com> |
|---|
| 5 | 6 | * Copyright (C) 2010,2012 - NVIDIA, Inc. |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or |
|---|
| 8 | | - * modify it under the terms of the GNU General Public License |
|---|
| 9 | | - * version 2 as published by the Free Software Foundation. |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is distributed in the hope that it will be useful, but |
|---|
| 12 | | - * WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 14 | | - * General Public License for more details. |
|---|
| 15 | | - * |
|---|
| 16 | | - * You should have received a copy of the GNU General Public License |
|---|
| 17 | | - * along with this program; if not, write to the Free Software |
|---|
| 18 | | - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
|---|
| 19 | | - * 02110-1301 USA |
|---|
| 20 | | - * |
|---|
| 21 | 7 | */ |
|---|
| 22 | 8 | |
|---|
| 23 | 9 | #ifndef __TEGRA20_DAS_H__ |
|---|
| .. | .. |
|---|
| 105 | 91 | */ |
|---|
| 106 | 92 | |
|---|
| 107 | 93 | /* |
|---|
| 108 | | - * Connect a DAP to to a DAC |
|---|
| 94 | + * Connect a DAP to a DAC |
|---|
| 109 | 95 | * dap_id: DAP to connect: TEGRA20_DAS_DAP_ID_* |
|---|
| 110 | 96 | * dac_sel: DAC to connect to: TEGRA20_DAS_DAP_SEL_DAC* |
|---|
| 111 | 97 | */ |
|---|
| 112 | 98 | extern int tegra20_das_connect_dap_to_dac(int dap_id, int dac_sel); |
|---|
| 113 | 99 | |
|---|
| 114 | 100 | /* |
|---|
| 115 | | - * Connect a DAP to to another DAP |
|---|
| 101 | + * Connect a DAP to another DAP |
|---|
| 116 | 102 | * dap_id: DAP to connect: TEGRA20_DAS_DAP_ID_* |
|---|
| 117 | 103 | * other_dap_sel: DAP to connect to: TEGRA20_DAS_DAP_SEL_DAP* |
|---|
| 118 | 104 | * master: Is this DAP the master (1) or slave (0) |
|---|