hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/pinctrl/tegra/pinctrl-tegra30.c
....@@ -1,18 +1,10 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * Pinctrl data for the NVIDIA Tegra30 pinmux
34 *
45 * Author: Stephen Warren <swarren@nvidia.com>
56 *
67 * Copyright (c) 2011-2012, NVIDIA CORPORATION. All rights reserved.
7
- *
8
- * This program is free software; you can redistribute it and/or modify it
9
- * under the terms and conditions of the GNU General Public License,
10
- * version 2, as published by the Free Software Foundation.
11
- *
12
- * This program is distributed in the hope it will be useful, but WITHOUT
13
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15
- * more details.
168 */
179
1810 #include <linux/init.h>
....@@ -2141,8 +2133,8 @@
21412133 .lock_bit = 7, \
21422134 .ioreset_bit = PINGROUP_BIT_##ior(8), \
21432135 .rcv_sel_bit = -1, \
2144
- .parked_bit = -1, \
21452136 .drv_reg = -1, \
2137
+ .parked_bitmask = 0, \
21462138 }
21472139
21482140 #define DRV_PINGROUP(pg_name, r, hsm_b, schmitt_b, lpmd_b, drvdn_b, \
....@@ -2162,7 +2154,6 @@
21622154 .rcv_sel_bit = -1, \
21632155 .drv_reg = DRV_PINGROUP_REG(r), \
21642156 .drv_bank = 0, \
2165
- .parked_bit = -1, \
21662157 .hsm_bit = hsm_b, \
21672158 .schmitt_bit = schmitt_b, \
21682159 .lpmd_bit = lpmd_b, \
....@@ -2175,6 +2166,7 @@
21752166 .slwf_bit = slwf_b, \
21762167 .slwf_width = slwf_w, \
21772168 .drvtype_bit = -1, \
2169
+ .parked_bitmask = 0, \
21782170 }
21792171
21802172 static const struct tegra_pingroup tegra30_groups[] = {