diff options
Diffstat (limited to 'drivers/gpio')
| -rw-r--r-- | drivers/gpio/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/gpio/gpio-altera.c | 14 | ||||
| -rw-r--r-- | drivers/gpio/gpio-bt8xx.c | 14 | ||||
| -rw-r--r-- | drivers/gpio/gpio-pcf857x.c | 15 | ||||
| -rw-r--r-- | drivers/gpio/gpio-rdc321x.c | 16 | ||||
| -rw-r--r-- | drivers/gpio/gpio-tps65218.c | 6 | ||||
| -rw-r--r-- | drivers/gpio/gpio-xgene-sb.c | 14 |
7 files changed, 7 insertions, 73 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 8023d03ec362..be832eb73627 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | # SPDX-License-Identifier: GPL-2.0-only | ||
| 1 | # | 2 | # |
| 2 | # GPIO infrastructure and drivers | 3 | # GPIO infrastructure and drivers |
| 3 | # | 4 | # |
diff --git a/drivers/gpio/gpio-altera.c b/drivers/gpio/gpio-altera.c index 748fdd4e9a53..e088b908c2c1 100644 --- a/drivers/gpio/gpio-altera.c +++ b/drivers/gpio/gpio-altera.c | |||
| @@ -1,19 +1,7 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Copyright (C) 2013 Altera Corporation | 3 | * Copyright (C) 2013 Altera Corporation |
| 3 | * Based on gpio-mpc8xxx.c | 4 | * Based on gpio-mpc8xxx.c |
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 17 | */ | 5 | */ |
| 18 | 6 | ||
| 19 | #include <linux/io.h> | 7 | #include <linux/io.h> |
diff --git a/drivers/gpio/gpio-bt8xx.c b/drivers/gpio/gpio-bt8xx.c index b8ec75cbd4b5..a6f30ad6750f 100644 --- a/drivers/gpio/gpio-bt8xx.c +++ b/drivers/gpio/gpio-bt8xx.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | 3 | ||
| 3 | bt8xx GPIO abuser | 4 | bt8xx GPIO abuser |
| @@ -28,19 +29,6 @@ | |||
| 28 | Copyright (C) 2005, 2006 Michael H. Schimek | 29 | Copyright (C) 2005, 2006 Michael H. Schimek |
| 29 | Sponsored by OPQ Systems AB | 30 | Sponsored by OPQ Systems AB |
| 30 | 31 | ||
| 31 | This program is free software; you can redistribute it and/or modify | ||
| 32 | it under the terms of the GNU General Public License as published by | ||
| 33 | the Free Software Foundation; either version 2 of the License, or | ||
| 34 | (at your option) any later version. | ||
| 35 | |||
| 36 | This program is distributed in the hope that it will be useful, | ||
| 37 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 38 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 39 | GNU General Public License for more details. | ||
| 40 | |||
| 41 | You should have received a copy of the GNU General Public License | ||
| 42 | along with this program; if not, write to the Free Software | ||
| 43 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 44 | */ | 32 | */ |
| 45 | 33 | ||
| 46 | #include <linux/module.h> | 34 | #include <linux/module.h> |
diff --git a/drivers/gpio/gpio-pcf857x.c b/drivers/gpio/gpio-pcf857x.c index c9b650f617fa..14fb8f6a1ad2 100644 --- a/drivers/gpio/gpio-pcf857x.c +++ b/drivers/gpio/gpio-pcf857x.c | |||
| @@ -1,21 +1,8 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Driver for pcf857x, pca857x, and pca967x I2C GPIO expanders | 3 | * Driver for pcf857x, pca857x, and pca967x I2C GPIO expanders |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2007 David Brownell | 5 | * Copyright (C) 2007 David Brownell |
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 19 | */ | 6 | */ |
| 20 | 7 | ||
| 21 | #include <linux/gpio/driver.h> | 8 | #include <linux/gpio/driver.h> |
diff --git a/drivers/gpio/gpio-rdc321x.c b/drivers/gpio/gpio-rdc321x.c index 2938217566d3..01ed2517e9fd 100644 --- a/drivers/gpio/gpio-rdc321x.c +++ b/drivers/gpio/gpio-rdc321x.c | |||
| @@ -1,23 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * RDC321x GPIO driver | 3 | * RDC321x GPIO driver |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2008, Volker Weiss <dev@tintuc.de> | 5 | * Copyright (C) 2008, Volker Weiss <dev@tintuc.de> |
| 5 | * Copyright (C) 2007-2010 Florian Fainelli <florian@openwrt.org> | 6 | * Copyright (C) 2007-2010 Florian Fainelli <florian@openwrt.org> |
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 20 | * | ||
| 21 | */ | 7 | */ |
| 22 | #include <linux/module.h> | 8 | #include <linux/module.h> |
| 23 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
diff --git a/drivers/gpio/gpio-tps65218.c b/drivers/gpio/gpio-tps65218.c index a379bba57d31..43a1150055ce 100644 --- a/drivers/gpio/gpio-tps65218.c +++ b/drivers/gpio/gpio-tps65218.c | |||
| @@ -1,13 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Copyright 2015 Verifone Int. | 3 | * Copyright 2015 Verifone Int. |
| 3 | * | 4 | * |
| 4 | * Author: Nicolas Saenz Julienne <nicolassaenzj@gmail.com> | 5 | * Author: Nicolas Saenz Julienne <nicolassaenzj@gmail.com> |
| 5 | * | 6 | * |
| 6 | * This program is free software; you can redistribute it and/or modify i t | ||
| 7 | * under the terms of the GNU General Public License as published by th e | ||
| 8 | * Free Software Foundation; either version 2 of the License, or (at you r | ||
| 9 | * option) any later version. | ||
| 10 | * | ||
| 11 | * This driver is based on the gpio-tps65912 implementation. | 7 | * This driver is based on the gpio-tps65912 implementation. |
| 12 | */ | 8 | */ |
| 13 | 9 | ||
diff --git a/drivers/gpio/gpio-xgene-sb.c b/drivers/gpio/gpio-xgene-sb.c index 641a05181017..38c01912c7b2 100644 --- a/drivers/gpio/gpio-xgene-sb.c +++ b/drivers/gpio/gpio-xgene-sb.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * AppliedMicro X-Gene SoC GPIO-Standby Driver | 3 | * AppliedMicro X-Gene SoC GPIO-Standby Driver |
| 3 | * | 4 | * |
| @@ -5,19 +6,6 @@ | |||
| 5 | * Author: Tin Huynh <tnhuynh@apm.com>. | 6 | * Author: Tin Huynh <tnhuynh@apm.com>. |
| 6 | * Y Vo <yvo@apm.com>. | 7 | * Y Vo <yvo@apm.com>. |
| 7 | * Quan Nguyen <qnguyen@apm.com>. | 8 | * Quan Nguyen <qnguyen@apm.com>. |
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or modify it | ||
| 10 | * under the terms of the GNU General Public License as published by the | ||
| 11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 12 | * option) any later version. | ||
| 13 | * | ||
| 14 | * This program is distributed in the hope that it will be useful, | ||
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | * GNU General Public License for more details. | ||
| 18 | * | ||
| 19 | * You should have received a copy of the GNU General Public License | ||
| 20 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 21 | */ | 9 | */ |
| 22 | 10 | ||
| 23 | #include <linux/module.h> | 11 | #include <linux/module.h> |
