mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-13 14:36:09 +07:00
b45a02e13e
spdxcheck.py complains:
include/linux/platform_data/gpio/gpio-amd-fch.h: 1:28 Invalid License ID: GPL+
which is correct because GPL+ is not a valid identifier. Of course this
could have been caught by checkpatch.pl _before_ submitting or merging the
patch.
WARNING: 'SPDX-License-Identifier: GPL+ */' is not supported in LICENSES/...
#271: FILE: include/linux/platform_data/gpio/gpio-amd-fch.h:1:
+/* SPDX-License-Identifier: GPL+ */
Fix it under the assumption that the author meant GPL-2.0+, which makes
sense as the corresponding C file is using that identifier.
Fixes: e09d168f13
("gpio: AMD G-Series PCH gpio driver")
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
* AMD FCH gpio driver platform-data
|
|
*
|
|
* Copyright (C) 2018 metux IT consult
|
|
* Author: Enrico Weigelt <info@metux.net>
|
|
*
|
|
*/
|
|
|
|
#ifndef __LINUX_PLATFORM_DATA_GPIO_AMD_FCH_H
|
|
#define __LINUX_PLATFORM_DATA_GPIO_AMD_FCH_H
|
|
|
|
#define AMD_FCH_GPIO_DRIVER_NAME "gpio_amd_fch"
|
|
|
|
/*
|
|
* gpio register index definitions
|
|
*/
|
|
#define AMD_FCH_GPIO_REG_GPIO49 0x40
|
|
#define AMD_FCH_GPIO_REG_GPIO50 0x41
|
|
#define AMD_FCH_GPIO_REG_GPIO51 0x42
|
|
#define AMD_FCH_GPIO_REG_GPIO59_DEVSLP0 0x43
|
|
#define AMD_FCH_GPIO_REG_GPIO57 0x44
|
|
#define AMD_FCH_GPIO_REG_GPIO58 0x45
|
|
#define AMD_FCH_GPIO_REG_GPIO59_DEVSLP1 0x46
|
|
#define AMD_FCH_GPIO_REG_GPIO64 0x47
|
|
#define AMD_FCH_GPIO_REG_GPIO68 0x48
|
|
#define AMD_FCH_GPIO_REG_GPIO66_SPKR 0x5B
|
|
#define AMD_FCH_GPIO_REG_GPIO71 0x4D
|
|
#define AMD_FCH_GPIO_REG_GPIO32_GE1 0x59
|
|
#define AMD_FCH_GPIO_REG_GPIO33_GE2 0x5A
|
|
#define AMT_FCH_GPIO_REG_GEVT22 0x09
|
|
|
|
/*
|
|
* struct amd_fch_gpio_pdata - GPIO chip platform data
|
|
* @gpio_num: number of entries
|
|
* @gpio_reg: array of gpio registers
|
|
* @gpio_names: array of gpio names
|
|
*/
|
|
struct amd_fch_gpio_pdata {
|
|
int gpio_num;
|
|
int *gpio_reg;
|
|
const char * const *gpio_names;
|
|
};
|
|
|
|
#endif /* __LINUX_PLATFORM_DATA_GPIO_AMD_FCH_H */
|