mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
86951164f3
This patch corrects the SPDX License Identifier style in header file related Meson axg SoC pinctrl driver. It assigns explicit block comment for the SPDX License Identifier. Changes made by using a script provided by Joe Perches here: https://lkml.org/lkml/2019/2/7/46. Suggested-by: Joe Perches <joe@perches.com> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com> Link: https://lore.kernel.org/r/bcb86aa22d8d8499502bbd8c54a364be24886a86.1574871463.git.nishadkamdar@gmail.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
62 lines
1.3 KiB
C
62 lines
1.3 KiB
C
/* SPDX-License-Identifier: (GPL-2.0+ or MIT) */
|
|
/*
|
|
* Copyright (c) 2017 Baylibre SAS.
|
|
* Author: Jerome Brunet <jbrunet@baylibre.com>
|
|
*
|
|
* Copyright (c) 2017 Amlogic, Inc. All rights reserved.
|
|
* Author: Xingyu Chen <xingyu.chen@amlogic.com>
|
|
*
|
|
*/
|
|
|
|
struct meson_pmx_bank {
|
|
const char *name;
|
|
unsigned int first;
|
|
unsigned int last;
|
|
unsigned int reg;
|
|
unsigned int offset;
|
|
};
|
|
|
|
struct meson_axg_pmx_data {
|
|
struct meson_pmx_bank *pmx_banks;
|
|
unsigned int num_pmx_banks;
|
|
};
|
|
|
|
#define BANK_PMX(n, f, l, r, o) \
|
|
{ \
|
|
.name = n, \
|
|
.first = f, \
|
|
.last = l, \
|
|
.reg = r, \
|
|
.offset = o, \
|
|
}
|
|
|
|
struct meson_pmx_axg_data {
|
|
unsigned int func;
|
|
};
|
|
|
|
#define PMX_DATA(f) \
|
|
{ \
|
|
.func = f, \
|
|
}
|
|
|
|
#define GROUP(grp, f) \
|
|
{ \
|
|
.name = #grp, \
|
|
.pins = grp ## _pins, \
|
|
.num_pins = ARRAY_SIZE(grp ## _pins), \
|
|
.data = (const struct meson_pmx_axg_data[]){ \
|
|
PMX_DATA(f), \
|
|
}, \
|
|
}
|
|
|
|
#define GPIO_GROUP(gpio) \
|
|
{ \
|
|
.name = #gpio, \
|
|
.pins = (const unsigned int[]){ gpio }, \
|
|
.num_pins = 1, \
|
|
.data = (const struct meson_pmx_axg_data[]){ \
|
|
PMX_DATA(0), \
|
|
}, \
|
|
}
|
|
|
|
extern const struct pinmux_ops meson_axg_pmx_ops;
|