| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * clkgen-mux.c: ST GEN-MUX Clock driver |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 5 | 6 | * |
|---|
| 6 | 7 | * Authors: Stephen Gallimore <stephen.gallimore@st.com> |
|---|
| 7 | 8 | * Pankaj Dev <pankaj.dev@st.com> |
|---|
| 8 | | - * |
|---|
| 9 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 10 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 11 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 12 | | - * (at your option) any later version. |
|---|
| 13 | | - * |
|---|
| 14 | 9 | */ |
|---|
| 15 | 10 | |
|---|
| 16 | 11 | #include <linux/slab.h> |
|---|
| 12 | +#include <linux/io.h> |
|---|
| 17 | 13 | #include <linux/of_address.h> |
|---|
| 18 | 14 | #include <linux/clk.h> |
|---|
| 19 | 15 | #include <linux/clk-provider.h> |
|---|