.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Allwinner SoCs Reset Controller driver |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright 2013 Maxime Ripard |
---|
5 | 6 | * |
---|
6 | 7 | * Maxime Ripard <maxime.ripard@free-electrons.com> |
---|
7 | | - * |
---|
8 | | - * This program is free software; you can redistribute it and/or modify |
---|
9 | | - * it under the terms of the GNU General Public License as published by |
---|
10 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
11 | | - * (at your option) any later version. |
---|
12 | 8 | */ |
---|
13 | 9 | |
---|
14 | 10 | #include <linux/err.h> |
---|
.. | .. |
---|
18 | 14 | #include <linux/of_address.h> |
---|
19 | 15 | #include <linux/platform_device.h> |
---|
20 | 16 | #include <linux/reset-controller.h> |
---|
| 17 | +#include <linux/reset/reset-simple.h> |
---|
| 18 | +#include <linux/reset/sunxi.h> |
---|
21 | 19 | #include <linux/slab.h> |
---|
22 | 20 | #include <linux/spinlock.h> |
---|
23 | 21 | #include <linux/types.h> |
---|
24 | | - |
---|
25 | | -#include "reset-simple.h" |
---|
26 | 22 | |
---|
27 | 23 | static int sunxi_reset_init(struct device_node *np) |
---|
28 | 24 | { |
---|