.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (C) 2013 STMicroelectronics Limited |
---|
3 | 4 | * Author: Stephen Gallimore <stephen.gallimore@st.com> |
---|
4 | 5 | * |
---|
5 | 6 | * Inspired by mach-imx/src.c |
---|
6 | | - * |
---|
7 | | - * This program is free software; you can redistribute it and/or modify |
---|
8 | | - * it under the terms of the GNU General Public License as published by |
---|
9 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
10 | | - * (at your option) any later version. |
---|
11 | 7 | */ |
---|
12 | 8 | #include <linux/kernel.h> |
---|
13 | 9 | #include <linux/platform_device.h> |
---|
.. | .. |
---|
21 | 17 | #include "reset-syscfg.h" |
---|
22 | 18 | |
---|
23 | 19 | /** |
---|
24 | | - * Reset channel regmap configuration |
---|
| 20 | + * struct syscfg_reset_channel - Reset channel regmap configuration |
---|
25 | 21 | * |
---|
26 | 22 | * @reset: regmap field for the channel's reset bit. |
---|
27 | 23 | * @ack: regmap field for the channel's ack bit (optional). |
---|
.. | .. |
---|
32 | 28 | }; |
---|
33 | 29 | |
---|
34 | 30 | /** |
---|
35 | | - * A reset controller which groups together a set of related reset bits, which |
---|
36 | | - * may be located in different system configuration registers. |
---|
| 31 | + * struct syscfg_reset_controller - A reset controller which groups together |
---|
| 32 | + * a set of related reset bits, which may be located in different system |
---|
| 33 | + * configuration registers. |
---|
37 | 34 | * |
---|
38 | 35 | * @rst: base reset controller structure. |
---|
39 | 36 | * @active_low: are the resets in this controller active low, i.e. clearing |
---|