License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2011-05-20 14:40:19 +08:00
|
|
|
# generic gpio support: platform drivers, dedicated expander chips, etc
|
2008-02-05 14:28:17 +08:00
|
|
|
|
|
|
|
ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG
|
|
|
|
|
2016-11-16 06:39:02 +08:00
|
|
|
obj-$(CONFIG_GPIOLIB) += devres.o
|
2013-01-18 15:57:46 +08:00
|
|
|
obj-$(CONFIG_GPIOLIB) += gpiolib.o
|
2014-07-01 13:45:16 +08:00
|
|
|
obj-$(CONFIG_GPIOLIB) += gpiolib-legacy.o
|
2016-10-21 22:21:31 +08:00
|
|
|
obj-$(CONFIG_GPIOLIB) += gpiolib-devprop.o
|
2012-04-08 04:31:33 +08:00
|
|
|
obj-$(CONFIG_OF_GPIO) += gpiolib-of.o
|
2014-07-01 13:45:15 +08:00
|
|
|
obj-$(CONFIG_GPIO_SYSFS) += gpiolib-sysfs.o
|
2012-11-30 19:37:36 +08:00
|
|
|
obj-$(CONFIG_GPIO_ACPI) += gpiolib-acpi.o
|
2008-02-05 14:28:20 +08:00
|
|
|
|
2011-06-05 08:38:28 +08:00
|
|
|
# Device drivers. Generally keep list sorted alphabetically
|
|
|
|
obj-$(CONFIG_GPIO_GENERIC) += gpio-generic.o
|
|
|
|
|
2016-04-28 17:05:12 +08:00
|
|
|
# directly supported by gpio-generic
|
|
|
|
gpio-generic-$(CONFIG_GPIO_GENERIC) += gpio-mmio.o
|
|
|
|
|
2016-01-21 02:50:11 +08:00
|
|
|
obj-$(CONFIG_GPIO_104_DIO_48E) += gpio-104-dio-48e.o
|
2015-10-20 00:59:14 +08:00
|
|
|
obj-$(CONFIG_GPIO_104_IDIO_16) += gpio-104-idio-16.o
|
2015-11-24 01:54:50 +08:00
|
|
|
obj-$(CONFIG_GPIO_104_IDI_48) += gpio-104-idi-48.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_74X164) += gpio-74x164.o
|
2014-10-03 15:31:57 +08:00
|
|
|
obj-$(CONFIG_GPIO_74XX_MMIO) += gpio-74xx-mmio.o
|
2012-09-18 16:57:10 +08:00
|
|
|
obj-$(CONFIG_GPIO_ADNP) += gpio-adnp.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_ADP5520) += gpio-adp5520.o
|
|
|
|
obj-$(CONFIG_GPIO_ADP5588) += gpio-adp5588.o
|
2015-02-24 17:53:03 +08:00
|
|
|
obj-$(CONFIG_GPIO_ALTERA) += gpio-altera.o
|
2016-06-03 01:52:24 +08:00
|
|
|
obj-$(CONFIG_GPIO_ALTERA_A10SR) += gpio-altera-a10sr.o
|
2012-06-01 21:36:31 +08:00
|
|
|
obj-$(CONFIG_GPIO_AMD8111) += gpio-amd8111.o
|
2015-10-19 11:07:37 +08:00
|
|
|
obj-$(CONFIG_GPIO_AMDPT) += gpio-amdpt.o
|
2012-06-23 20:29:25 +08:00
|
|
|
obj-$(CONFIG_GPIO_ARIZONA) += gpio-arizona.o
|
2016-01-29 03:44:29 +08:00
|
|
|
obj-$(CONFIG_GPIO_ATH79) += gpio-ath79.o
|
2016-08-30 15:54:27 +08:00
|
|
|
obj-$(CONFIG_GPIO_ASPEED) += gpio-aspeed.o
|
2018-02-20 20:19:33 +08:00
|
|
|
obj-$(CONFIG_GPIO_RASPBERRYPI_EXP) += gpio-raspberrypi-exp.o
|
2013-09-11 02:07:01 +08:00
|
|
|
obj-$(CONFIG_GPIO_BCM_KONA) += gpio-bcm-kona.o
|
2017-04-26 02:32:09 +08:00
|
|
|
obj-$(CONFIG_GPIO_BD9571MWV) += gpio-bd9571mwv.o
|
2015-05-29 10:14:05 +08:00
|
|
|
obj-$(CONFIG_GPIO_BRCMSTB) += gpio-brcmstb.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_BT8XX) += gpio-bt8xx.o
|
2012-10-10 00:05:56 +08:00
|
|
|
obj-$(CONFIG_GPIO_CLPS711X) += gpio-clps711x.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_CS5535) += gpio-cs5535.o
|
2014-06-03 13:26:04 +08:00
|
|
|
obj-$(CONFIG_GPIO_CRYSTAL_COVE) += gpio-crystalcove.o
|
2011-07-06 18:32:13 +08:00
|
|
|
obj-$(CONFIG_GPIO_DA9052) += gpio-da9052.o
|
2012-09-14 21:30:16 +08:00
|
|
|
obj-$(CONFIG_GPIO_DA9055) += gpio-da9055.o
|
2013-11-21 23:34:36 +08:00
|
|
|
obj-$(CONFIG_GPIO_DAVINCI) += gpio-davinci.o
|
2014-11-06 21:48:05 +08:00
|
|
|
obj-$(CONFIG_GPIO_DLN2) += gpio-dln2.o
|
2014-02-26 07:01:01 +08:00
|
|
|
obj-$(CONFIG_GPIO_DWAPB) += gpio-dwapb.o
|
2018-03-05 10:56:51 +08:00
|
|
|
obj-$(CONFIG_GPIO_EIC_SPRD) += gpio-eic-sprd.o
|
2012-05-17 14:22:23 +08:00
|
|
|
obj-$(CONFIG_GPIO_EM) += gpio-em.o
|
2011-06-02 01:09:19 +08:00
|
|
|
obj-$(CONFIG_GPIO_EP93XX) += gpio-ep93xx.o
|
2017-01-20 06:23:20 +08:00
|
|
|
obj-$(CONFIG_GPIO_EXAR) += gpio-exar.o
|
2013-08-30 04:56:56 +08:00
|
|
|
obj-$(CONFIG_GPIO_F7188X) += gpio-f7188x.o
|
2017-03-13 07:28:16 +08:00
|
|
|
obj-$(CONFIG_GPIO_FTGPIO010) += gpio-ftgpio010.o
|
2012-03-13 01:12:58 +08:00
|
|
|
obj-$(CONFIG_GPIO_GE_FPGA) += gpio-ge.o
|
2016-08-02 21:57:47 +08:00
|
|
|
obj-$(CONFIG_GPIO_GPIO_MM) += gpio-gpio-mm.o
|
2013-04-17 20:36:50 +08:00
|
|
|
obj-$(CONFIG_GPIO_GRGPIO) += gpio-grgpio.o
|
gpio: Add GPIO driver for Nintendo Wii
The Nintendo Wii's chipset (called "Hollywood") has a GPIO controller
that supports a configurable number of pins (up to 32), interrupts, and
some special mechanisms to share the controller between the system's
security processor (an ARM926) and the PowerPC CPU. Pin multiplexing is
not supported.
This patch adds a basic driver for this GPIO controller. Interrupt
support will come in a later patch.
This patch is based on code developed by Albert Herranz and the GameCube
Linux Team, file arch/powerpc/platforms/embedded6xx/hlwd-gpio.c,
available at https://github.com/DeltaResero/GC-Wii-Linux-Kernels, but
has grown quite dissimilar.
v3:
- Do some style cleanups, as suggest by Andy Shevchenko
v2:
- Change hlwd_gpio_driver.driver.name to "gpio-hlwd" to match the
filename (was "hlwd_gpio")
- Remove unnecessary include of linux/of_gpio.h, as suggested by Linus
Walleij.
- Add struct device pointer to context struct to make it possible to use
dev_info(hlwd->dev, "..."), as suggested by Linus Walleij
- Use the GPIO_GENERIC library to reduce code size, as suggested by
Linus Walleij
- Use iowrite32be instead of __raw_writel for big-endian MMIO access, as
suggested by Linus Walleij
- Remove commit message paragraph suggesting to diff against the
original driver, because it's so different now
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Cc: Albert Herranz <albert_herranz@yahoo.es>
Reviewed-by: Segher Boessenkool <segher@kernel.crashing.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2018-02-09 20:07:29 +08:00
|
|
|
obj-$(CONFIG_GPIO_HLWD) += gpio-hlwd.o
|
2016-09-16 19:48:12 +08:00
|
|
|
obj-$(CONFIG_HTC_EGPIO) += gpio-htc-egpio.o
|
gpio: Add support for Intel ICHx/3100/Series[56] GPIO
This driver works on many Intel chipsets, including the ICH6, ICH7,
ICH8, ICH9, ICH10, 3100, Series 5/3400 (Ibex Peak), Series 6/C200
(Cougar Point), and NM10 (Tiger Point).
Additional Intel chipsets should be easily supported if needed, eg the
ICH1-5, EP80579, etc.
Tested on QM67 (Cougar Point), QM57 (Ibex Peak), 3100 (Whitmore Lake),
and NM10 (Tiger Point).
Includes work from Jean Delvare:
- Resource leak removal during module load/unload
- GPIO API bit value enforcement
Also includes code cleanup from Guenter Roeck and Grant Likely.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Signed-off-by: Aaron Sierra <asierra@xes-inc.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
2012-04-18 22:48:24 +08:00
|
|
|
obj-$(CONFIG_GPIO_ICH) += gpio-ich.o
|
2017-05-13 00:52:57 +08:00
|
|
|
obj-$(CONFIG_GPIO_INGENIC) += gpio-ingenic.o
|
2013-09-09 17:59:51 +08:00
|
|
|
obj-$(CONFIG_GPIO_IOP) += gpio-iop.o
|
2015-09-22 00:24:24 +08:00
|
|
|
obj-$(CONFIG_GPIO_IT87) += gpio-it87.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_JANZ_TTL) += gpio-janz-ttl.o
|
2013-06-24 12:00:05 +08:00
|
|
|
obj-$(CONFIG_GPIO_KEMPLD) += gpio-kempld.o
|
2011-12-05 21:47:48 +08:00
|
|
|
obj-$(CONFIG_ARCH_KS8695) += gpio-ks8695.o
|
2013-10-05 04:01:41 +08:00
|
|
|
obj-$(CONFIG_GPIO_INTEL_MID) += gpio-intel-mid.o
|
2015-04-01 10:20:08 +08:00
|
|
|
obj-$(CONFIG_GPIO_LOONGSON) += gpio-loongson.o
|
gpio: add LP3943 I2C GPIO expander driver
This is one of LP3943 MFD driver.
LP3943 is configurable as a GPIO expander, up to 16 GPIOs.
* Application note: how to configure LP3943 as a GPIO expander
http://www.ti.com/lit/an/snva287a/snva287a.pdf
* Supported GPIO controller operations
request, free, direction_input, direction_output, get and set
* GPIO direction register not supported
LP3943 doesn't have the GPIO direction register. It only provides input and
output status registers.
So, private data for the direction should be handled manually.
This variable is updated whenever the direction is changed and
used in 'get' operation.
* Pin assignment
A driver data, 'pin_used' is checked when a GPIO is requested.
If the GPIO is already assigned, then returns as failure.
If the GPIO is available, 'pin_used' is set.
When the GPIO is not used anymore, then it is cleared.
It is defined as unsigned long type for atomic bit operation APIs,
but only LSB 16bits are used because LP3943 has 16 outputs.
Signed-off-by: Milo Kim <milo.kim@ti.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
2013-12-06 10:18:42 +08:00
|
|
|
obj-$(CONFIG_GPIO_LP3943) += gpio-lp3943.o
|
2015-05-03 05:11:34 +08:00
|
|
|
obj-$(CONFIG_GPIO_LPC18XX) += gpio-lpc18xx.o
|
2011-08-22 15:44:45 +08:00
|
|
|
obj-$(CONFIG_ARCH_LPC32XX) += gpio-lpc32xx.o
|
2016-08-31 16:58:11 +08:00
|
|
|
obj-$(CONFIG_GPIO_LP873X) += gpio-lp873x.o
|
2017-06-15 14:33:11 +08:00
|
|
|
obj-$(CONFIG_GPIO_LP87565) += gpio-lp87565.o
|
2012-12-12 23:42:38 +08:00
|
|
|
obj-$(CONFIG_GPIO_LYNXPOINT) += gpio-lynxpoint.o
|
2018-05-21 18:00:02 +08:00
|
|
|
obj-$(CONFIG_GPIO_MADERA) += gpio-madera.o
|
2017-10-12 18:40:10 +08:00
|
|
|
obj-$(CONFIG_GPIO_MAX3191X) += gpio-max3191x.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_MAX730X) += gpio-max730x.o
|
|
|
|
obj-$(CONFIG_GPIO_MAX7300) += gpio-max7300.o
|
|
|
|
obj-$(CONFIG_GPIO_MAX7301) += gpio-max7301.o
|
|
|
|
obj-$(CONFIG_GPIO_MAX732X) += gpio-max732x.o
|
2016-05-13 13:19:14 +08:00
|
|
|
obj-$(CONFIG_GPIO_MAX77620) += gpio-max77620.o
|
2015-01-19 18:35:53 +08:00
|
|
|
obj-$(CONFIG_GPIO_MB86S7X) += gpio-mb86s7x.o
|
2016-03-01 02:44:43 +08:00
|
|
|
obj-$(CONFIG_GPIO_MENZ127) += gpio-menz127.o
|
2016-07-08 19:08:23 +08:00
|
|
|
obj-$(CONFIG_GPIO_MERRIFIELD) += gpio-merrifield.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_MC33880) += gpio-mc33880.o
|
2012-01-30 14:31:20 +08:00
|
|
|
obj-$(CONFIG_GPIO_MC9S08DZ60) += gpio-mc9s08dz60.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_ML_IOH) += gpio-ml-ioh.o
|
2012-05-12 00:48:39 +08:00
|
|
|
obj-$(CONFIG_GPIO_MM_LANTIQ) += gpio-mm-lantiq.o
|
2016-08-31 17:45:46 +08:00
|
|
|
obj-$(CONFIG_GPIO_MOCKUP) += gpio-mockup.o
|
2011-07-07 01:54:19 +08:00
|
|
|
obj-$(CONFIG_GPIO_MPC5200) += gpio-mpc5200.o
|
2011-09-21 18:49:20 +08:00
|
|
|
obj-$(CONFIG_GPIO_MPC8XXX) += gpio-mpc8xxx.o
|
2012-04-24 18:02:49 +08:00
|
|
|
obj-$(CONFIG_GPIO_MSIC) += gpio-msic.o
|
2018-07-05 21:43:10 +08:00
|
|
|
obj-$(CONFIG_GPIO_MT7621) += gpio-mt7621.o
|
2012-09-20 04:52:58 +08:00
|
|
|
obj-$(CONFIG_GPIO_MVEBU) += gpio-mvebu.o
|
2011-06-06 00:07:54 +08:00
|
|
|
obj-$(CONFIG_GPIO_MXC) += gpio-mxc.o
|
2011-06-06 23:37:58 +08:00
|
|
|
obj-$(CONFIG_GPIO_MXS) += gpio-mxs.o
|
2013-07-30 05:29:10 +08:00
|
|
|
obj-$(CONFIG_GPIO_OCTEON) += gpio-octeon.o
|
2014-04-06 22:58:15 +08:00
|
|
|
obj-$(CONFIG_GPIO_OMAP) += gpio-omap.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_PCA953X) += gpio-pca953x.o
|
|
|
|
obj-$(CONFIG_GPIO_PCF857X) += gpio-pcf857x.o
|
|
|
|
obj-$(CONFIG_GPIO_PCH) += gpio-pch.o
|
2017-02-02 04:37:55 +08:00
|
|
|
obj-$(CONFIG_GPIO_PCI_IDIO_16) += gpio-pci-idio-16.o
|
2018-01-10 06:21:45 +08:00
|
|
|
obj-$(CONFIG_GPIO_PCIE_IDIO_24) += gpio-pcie-idio-24.o
|
2016-01-26 00:37:31 +08:00
|
|
|
obj-$(CONFIG_GPIO_PISOSR) += gpio-pisosr.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_PL061) += gpio-pl061.o
|
2018-03-05 10:56:52 +08:00
|
|
|
obj-$(CONFIG_GPIO_PMIC_EIC_SPRD) += gpio-pmic-eic-sprd.o
|
2011-10-17 20:37:52 +08:00
|
|
|
obj-$(CONFIG_GPIO_PXA) += gpio-pxa.o
|
2012-05-14 15:16:12 +08:00
|
|
|
obj-$(CONFIG_GPIO_RC5T583) += gpio-rc5t583.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_RDC321X) += gpio-rdc321x.o
|
2013-03-13 19:32:13 +08:00
|
|
|
obj-$(CONFIG_GPIO_RCAR) += gpio-rcar.o
|
2016-08-31 15:49:44 +08:00
|
|
|
obj-$(CONFIG_GPIO_REG) += gpio-reg.o
|
2011-08-22 15:49:07 +08:00
|
|
|
obj-$(CONFIG_ARCH_SA1100) += gpio-sa1100.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_SCH) += gpio-sch.o
|
2013-12-05 07:56:43 +08:00
|
|
|
obj-$(CONFIG_GPIO_SCH311X) += gpio-sch311x.o
|
2011-06-27 15:26:23 +08:00
|
|
|
obj-$(CONFIG_GPIO_SODAVILLE) += gpio-sodaville.o
|
2012-11-16 13:15:25 +08:00
|
|
|
obj-$(CONFIG_GPIO_SPEAR_SPICS) += gpio-spear-spics.o
|
2018-02-24 10:07:18 +08:00
|
|
|
obj-$(CONFIG_GPIO_SPRD) += gpio-sprd.o
|
2012-04-12 16:48:55 +08:00
|
|
|
obj-$(CONFIG_GPIO_STA2X11) += gpio-sta2x11.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_STMPE) += gpio-stmpe.o
|
2012-05-12 00:48:39 +08:00
|
|
|
obj-$(CONFIG_GPIO_STP_XWAY) += gpio-stp-xway.o
|
2014-03-12 01:55:14 +08:00
|
|
|
obj-$(CONFIG_GPIO_SYSCON) += gpio-syscon.o
|
2013-10-08 20:25:22 +08:00
|
|
|
obj-$(CONFIG_GPIO_TB10X) += gpio-tb10x.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_TC3589X) += gpio-tc3589x.o
|
2016-02-25 03:54:32 +08:00
|
|
|
obj-$(CONFIG_GPIO_TEGRA) += gpio-tegra.o
|
2017-11-08 02:15:56 +08:00
|
|
|
obj-$(CONFIG_GPIO_TEGRA186) += gpio-tegra186.o
|
2017-08-18 08:53:35 +08:00
|
|
|
obj-$(CONFIG_GPIO_THUNDERX) += gpio-thunderx.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_TIMBERDALE) += gpio-timberdale.o
|
2013-01-03 18:46:59 +08:00
|
|
|
obj-$(CONFIG_GPIO_PALMAS) += gpio-palmas.o
|
2016-01-26 00:14:12 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPIC2810) += gpio-tpic2810.o
|
2016-02-07 00:12:10 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPS65086) += gpio-tps65086.o
|
2016-01-31 01:06:44 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPS65218) += gpio-tps65218.o
|
2012-07-18 14:20:48 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPS6586X) += gpio-tps6586x.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPS65910) += gpio-tps65910.o
|
2011-06-10 03:50:19 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPS65912) += gpio-tps65912.o
|
2017-07-29 08:30:25 +08:00
|
|
|
obj-$(CONFIG_GPIO_TPS68470) += gpio-tps68470.o
|
2016-01-14 00:57:43 +08:00
|
|
|
obj-$(CONFIG_GPIO_TS4800) += gpio-ts4800.o
|
2016-08-12 23:16:49 +08:00
|
|
|
obj-$(CONFIG_GPIO_TS4900) += gpio-ts4900.o
|
2012-12-08 10:36:34 +08:00
|
|
|
obj-$(CONFIG_GPIO_TS5500) += gpio-ts5500.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_TWL4030) += gpio-twl4030.o
|
2012-08-16 20:13:15 +08:00
|
|
|
obj-$(CONFIG_GPIO_TWL6040) += gpio-twl6040.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_UCB1400) += gpio-ucb1400.o
|
2017-10-12 19:36:16 +08:00
|
|
|
obj-$(CONFIG_GPIO_UNIPHIER) += gpio-uniphier.o
|
2014-10-17 03:47:58 +08:00
|
|
|
obj-$(CONFIG_GPIO_VF610) += gpio-vf610.o
|
2012-11-05 22:48:24 +08:00
|
|
|
obj-$(CONFIG_GPIO_VIPERBOARD) += gpio-viperboard.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_VR41XX) += gpio-vr41xx.o
|
|
|
|
obj-$(CONFIG_GPIO_VX855) += gpio-vx855.o
|
2016-07-26 05:59:38 +08:00
|
|
|
obj-$(CONFIG_GPIO_WHISKEY_COVE) += gpio-wcove.o
|
2018-01-06 07:46:08 +08:00
|
|
|
obj-$(CONFIG_GPIO_WINBOND) += gpio-winbond.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_WM831X) += gpio-wm831x.o
|
|
|
|
obj-$(CONFIG_GPIO_WM8350) += gpio-wm8350.o
|
|
|
|
obj-$(CONFIG_GPIO_WM8994) += gpio-wm8994.o
|
2016-01-21 02:45:33 +08:00
|
|
|
obj-$(CONFIG_GPIO_WS16C48) += gpio-ws16c48.o
|
2014-08-01 03:03:25 +08:00
|
|
|
obj-$(CONFIG_GPIO_XGENE) += gpio-xgene.o
|
2015-01-16 15:34:19 +08:00
|
|
|
obj-$(CONFIG_GPIO_XGENE_SB) += gpio-xgene-sb.o
|
2011-06-05 08:38:28 +08:00
|
|
|
obj-$(CONFIG_GPIO_XILINX) += gpio-xilinx.o
|
2015-04-28 22:40:45 +08:00
|
|
|
obj-$(CONFIG_GPIO_XLP) += gpio-xlp.o
|
2017-05-15 13:58:25 +08:00
|
|
|
obj-$(CONFIG_GPIO_XRA1403) += gpio-xra1403.o
|
2013-12-12 17:18:41 +08:00
|
|
|
obj-$(CONFIG_GPIO_XTENSA) += gpio-xtensa.o
|
2014-02-25 03:54:58 +08:00
|
|
|
obj-$(CONFIG_GPIO_ZEVIO) += gpio-zevio.o
|
2014-07-08 19:02:35 +08:00
|
|
|
obj-$(CONFIG_GPIO_ZYNQ) += gpio-zynq.o
|
2015-06-29 10:35:57 +08:00
|
|
|
obj-$(CONFIG_GPIO_ZX) += gpio-zx.o
|
2016-04-06 20:34:53 +08:00
|
|
|
obj-$(CONFIG_GPIO_LOONGSON1) += gpio-loongson1.o
|