From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Date: Wed, 05 Jul 2017 20:02:09 +0000 Subject: [PATCH 00/18] treewide: Move storage class before return type Message-Id: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Andrew Morton , kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, linux-m68k@lists.linux-m68k.org, linux-efi@vger.kernel.org, linux-s390@vger.kernel.org, linux-serial@vger.kernel.org, linux-ia64@vger.kernel.org, linux-usb@vger.kernel.org, linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org, alsa-devel@alsa-project.org Cc: linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, linux-cris-kernel@axis.com, linux-sh@vger.kernel.org Move the inline/asmlinkage keywords before the return types Add a checkpatch test for this too. Joe Perches (18): checkpatch: improve the STORAGE_CLASS test ARM: KVM: Move asmlinkage before type ARM: HP Jornada 7XX: Move inline before return type CRIS: gpio: Move inline before return type FRV: tlbflush: Move asmlinkage before return type ia64: Move inline before return type ia64: sn: pci: Move inline before type m68k: coldfire: Move inline before return type MIPS: SMP: Move asmlinkage before return type sh: Move inline before return type x86/efi: Move asmlinkage before return type drivers: s390: Move static and inline before return type drivers: tty: serial: Move inline before return type USB: serial: safe_serial: Move __inline__ before return type video: fbdev: intelfb: Move inline before return type video: fbdev: omap: Move inline before return type ARM: samsung: usb-ohci: Move inline before return type ALSA: opl4: Move inline before return type arch/arm/include/asm/kvm_hyp.h | 8 ++++---- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- arch/cris/arch-v10/drivers/gpio.c | 4 ++-- arch/frv/include/asm/tlbflush.h | 8 ++++---- arch/ia64/kernel/mca.c | 2 +- arch/ia64/sn/pci/pcibr/pcibr_ate.c | 2 +- arch/ia64/sn/pci/tioce_provider.c | 4 ++-- arch/m68k/coldfire/intc-simr.c | 4 ++-- arch/mips/include/asm/smp.h | 2 +- arch/sh/mm/cache-sh5.c | 2 +- arch/x86/include/asm/efi.h | 4 ++-- drivers/s390/net/ctcm_main.c | 2 +- drivers/s390/net/qeth_l3_main.c | 2 +- drivers/tty/serial/ioc3_serial.c | 4 ++-- drivers/tty/serial/ioc4_serial.c | 4 ++-- drivers/usb/serial/safe_serial.c | 2 +- drivers/video/fbdev/intelfb/intelfbdrv.c | 2 +- drivers/video/fbdev/omap/lcdc.c | 6 +++--- include/linux/platform_data/usb-ohci-s3c2410.h | 2 +- scripts/checkpatch.pl | 12 ++++++++++-- sound/drivers/opl4/opl4_lib.c | 2 +- 21 files changed, 44 insertions(+), 36 deletions(-) -- 2.10.0.rc2.1.g053435c From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752766AbdGEUHd (ORCPT ); Wed, 5 Jul 2017 16:07:33 -0400 Received: from smtprelay0076.hostedemail.com ([216.40.44.76]:53352 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754434AbdGEUCi (ORCPT ); Wed, 5 Jul 2017 16:02:38 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::::::::::::::::::::,RULES_HIT:41:355:379:541:857:973:982:988:989:1260:1345:1437:1534:1542:1711:1730:1747:1777:1792:1801:2194:2199:2393:2559:2562:3138:3139:3140:3141:3142:3353:3865:3868:4605:5007:6261:6737:10004:10848:11658:11914:12043:12048:12296:12346:12555:12679:12895:14096:14181:14394:14664:14721:21080:21451:21627:30054,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:2,LUA_SUMMARY:none X-HE-Tag: word20_8ab228b149b1d X-Filterd-Recvd-Size: 3331 From: Joe Perches To: Andrew Morton , kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, linux-m68k@vger.kernel.org, linux-efi@vger.kernel.org, linux-s390@vger.kernel.org, linux-serial@vger.kernel.org, linux-ia64@vger.kernel.org, linux-usb@vger.kernel.org, linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org, alsa-devel@alsa-project.org Cc: linux-kernel@vger.kernel.org, linux-cris-kernel@axis.com, linux-mips@linux-mips.org, linux-sh@vger.kernel.org Subject: [PATCH 00/18] treewide: Move storage class before return type Date: Wed, 5 Jul 2017 13:02:09 -0700 Message-Id: X-Mailer: git-send-email 2.10.0.rc2.1.g053435c Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Move the inline/asmlinkage keywords before the return types Add a checkpatch test for this too. Joe Perches (18): checkpatch: improve the STORAGE_CLASS test ARM: KVM: Move asmlinkage before type ARM: HP Jornada 7XX: Move inline before return type CRIS: gpio: Move inline before return type FRV: tlbflush: Move asmlinkage before return type ia64: Move inline before return type ia64: sn: pci: Move inline before type m68k: coldfire: Move inline before return type MIPS: SMP: Move asmlinkage before return type sh: Move inline before return type x86/efi: Move asmlinkage before return type drivers: s390: Move static and inline before return type drivers: tty: serial: Move inline before return type USB: serial: safe_serial: Move __inline__ before return type video: fbdev: intelfb: Move inline before return type video: fbdev: omap: Move inline before return type ARM: samsung: usb-ohci: Move inline before return type ALSA: opl4: Move inline before return type arch/arm/include/asm/kvm_hyp.h | 8 ++++---- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- arch/cris/arch-v10/drivers/gpio.c | 4 ++-- arch/frv/include/asm/tlbflush.h | 8 ++++---- arch/ia64/kernel/mca.c | 2 +- arch/ia64/sn/pci/pcibr/pcibr_ate.c | 2 +- arch/ia64/sn/pci/tioce_provider.c | 4 ++-- arch/m68k/coldfire/intc-simr.c | 4 ++-- arch/mips/include/asm/smp.h | 2 +- arch/sh/mm/cache-sh5.c | 2 +- arch/x86/include/asm/efi.h | 4 ++-- drivers/s390/net/ctcm_main.c | 2 +- drivers/s390/net/qeth_l3_main.c | 2 +- drivers/tty/serial/ioc3_serial.c | 4 ++-- drivers/tty/serial/ioc4_serial.c | 4 ++-- drivers/usb/serial/safe_serial.c | 2 +- drivers/video/fbdev/intelfb/intelfbdrv.c | 2 +- drivers/video/fbdev/omap/lcdc.c | 6 +++--- include/linux/platform_data/usb-ohci-s3c2410.h | 2 +- scripts/checkpatch.pl | 12 ++++++++++-- sound/drivers/opl4/opl4_lib.c | 2 +- 21 files changed, 44 insertions(+), 36 deletions(-) -- 2.10.0.rc2.1.g053435c From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: [PATCH 00/18] treewide: Move storage class before return type Date: Wed, 5 Jul 2017 13:02:09 -0700 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Andrew Morton , kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, linux-m68k@lists.linux-m68k.org, linux-efi@vger.kernel.org, linux-s390@vger.kernel.org, linux-serial@vger.kernel.org, linux-ia64@vger.kernel.org, linux-usb@vger.kernel.org, linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org, alsa-devel@alsa-project.org Cc: linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, linux-cris-kernel@axis.com, linux-sh@vger.kernel.org List-Id: linux-efi@vger.kernel.org Move the inline/asmlinkage keywords before the return types Add a checkpatch test for this too. Joe Perches (18): checkpatch: improve the STORAGE_CLASS test ARM: KVM: Move asmlinkage before type ARM: HP Jornada 7XX: Move inline before return type CRIS: gpio: Move inline before return type FRV: tlbflush: Move asmlinkage before return type ia64: Move inline before return type ia64: sn: pci: Move inline before type m68k: coldfire: Move inline before return type MIPS: SMP: Move asmlinkage before return type sh: Move inline before return type x86/efi: Move asmlinkage before return type drivers: s390: Move static and inline before return type drivers: tty: serial: Move inline before return type USB: serial: safe_serial: Move __inline__ before return type video: fbdev: intelfb: Move inline before return type video: fbdev: omap: Move inline before return type ARM: samsung: usb-ohci: Move inline before return type ALSA: opl4: Move inline before return type arch/arm/include/asm/kvm_hyp.h | 8 ++++---- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- arch/cris/arch-v10/drivers/gpio.c | 4 ++-- arch/frv/include/asm/tlbflush.h | 8 ++++---- arch/ia64/kernel/mca.c | 2 +- arch/ia64/sn/pci/pcibr/pcibr_ate.c | 2 +- arch/ia64/sn/pci/tioce_provider.c | 4 ++-- arch/m68k/coldfire/intc-simr.c | 4 ++-- arch/mips/include/asm/smp.h | 2 +- arch/sh/mm/cache-sh5.c | 2 +- arch/x86/include/asm/efi.h | 4 ++-- drivers/s390/net/ctcm_main.c | 2 +- drivers/s390/net/qeth_l3_main.c | 2 +- drivers/tty/serial/ioc3_serial.c | 4 ++-- drivers/tty/serial/ioc4_serial.c | 4 ++-- drivers/usb/serial/safe_serial.c | 2 +- drivers/video/fbdev/intelfb/intelfbdrv.c | 2 +- drivers/video/fbdev/omap/lcdc.c | 6 +++--- include/linux/platform_data/usb-ohci-s3c2410.h | 2 +- scripts/checkpatch.pl | 12 ++++++++++-- sound/drivers/opl4/opl4_lib.c | 2 +- 21 files changed, 44 insertions(+), 36 deletions(-) -- 2.10.0.rc2.1.g053435c From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Wed, 05 Jul 2017 22:02:44 +0200 (CEST) Received: from smtprelay0135.hostedemail.com ([216.40.44.135]:56536 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by eddie.linux-mips.org with ESMTP id S23993876AbdGEUChYzY3s (ORCPT ); Wed, 5 Jul 2017 22:02:37 +0200 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay07.hostedemail.com (Postfix) with ESMTP id AB730181D341F; Wed, 5 Jul 2017 20:02:35 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: word20_8ab228b149b1d X-Filterd-Recvd-Size: 3331 Received: from joe-laptop.perches.com (unknown [47.151.132.55]) (Authenticated sender: joe@perches.com) by omf07.hostedemail.com (Postfix) with ESMTPA; Wed, 5 Jul 2017 20:02:32 +0000 (UTC) From: Joe Perches To: Andrew Morton , kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, linux-m68k@lists.linux-m68k.org, linux-efi@vger.kernel.org, linux-s390@vger.kernel.org, linux-serial@vger.kernel.org, linux-ia64@vger.kernel.org, linux-usb@vger.kernel.org, linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org, alsa-devel@alsa-project.org Cc: linux-kernel@vger.kernel.org, linux-cris-kernel@axis.com, linux-mips@linux-mips.org, linux-sh@vger.kernel.org Subject: [PATCH 00/18] treewide: Move storage class before return type Date: Wed, 5 Jul 2017 13:02:09 -0700 Message-Id: X-Mailer: git-send-email 2.10.0.rc2.1.g053435c Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 59022 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: joe@perches.com Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips Move the inline/asmlinkage keywords before the return types Add a checkpatch test for this too. Joe Perches (18): checkpatch: improve the STORAGE_CLASS test ARM: KVM: Move asmlinkage before type ARM: HP Jornada 7XX: Move inline before return type CRIS: gpio: Move inline before return type FRV: tlbflush: Move asmlinkage before return type ia64: Move inline before return type ia64: sn: pci: Move inline before type m68k: coldfire: Move inline before return type MIPS: SMP: Move asmlinkage before return type sh: Move inline before return type x86/efi: Move asmlinkage before return type drivers: s390: Move static and inline before return type drivers: tty: serial: Move inline before return type USB: serial: safe_serial: Move __inline__ before return type video: fbdev: intelfb: Move inline before return type video: fbdev: omap: Move inline before return type ARM: samsung: usb-ohci: Move inline before return type ALSA: opl4: Move inline before return type arch/arm/include/asm/kvm_hyp.h | 8 ++++---- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- arch/cris/arch-v10/drivers/gpio.c | 4 ++-- arch/frv/include/asm/tlbflush.h | 8 ++++---- arch/ia64/kernel/mca.c | 2 +- arch/ia64/sn/pci/pcibr/pcibr_ate.c | 2 +- arch/ia64/sn/pci/tioce_provider.c | 4 ++-- arch/m68k/coldfire/intc-simr.c | 4 ++-- arch/mips/include/asm/smp.h | 2 +- arch/sh/mm/cache-sh5.c | 2 +- arch/x86/include/asm/efi.h | 4 ++-- drivers/s390/net/ctcm_main.c | 2 +- drivers/s390/net/qeth_l3_main.c | 2 +- drivers/tty/serial/ioc3_serial.c | 4 ++-- drivers/tty/serial/ioc4_serial.c | 4 ++-- drivers/usb/serial/safe_serial.c | 2 +- drivers/video/fbdev/intelfb/intelfbdrv.c | 2 +- drivers/video/fbdev/omap/lcdc.c | 6 +++--- include/linux/platform_data/usb-ohci-s3c2410.h | 2 +- scripts/checkpatch.pl | 12 ++++++++++-- sound/drivers/opl4/opl4_lib.c | 2 +- 21 files changed, 44 insertions(+), 36 deletions(-) -- 2.10.0.rc2.1.g053435c From mboxrd@z Thu Jan 1 00:00:00 1970 From: joe@perches.com (Joe Perches) Date: Wed, 5 Jul 2017 13:02:09 -0700 Subject: [PATCH 00/18] treewide: Move storage class before return type Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Move the inline/asmlinkage keywords before the return types Add a checkpatch test for this too. Joe Perches (18): checkpatch: improve the STORAGE_CLASS test ARM: KVM: Move asmlinkage before type ARM: HP Jornada 7XX: Move inline before return type CRIS: gpio: Move inline before return type FRV: tlbflush: Move asmlinkage before return type ia64: Move inline before return type ia64: sn: pci: Move inline before type m68k: coldfire: Move inline before return type MIPS: SMP: Move asmlinkage before return type sh: Move inline before return type x86/efi: Move asmlinkage before return type drivers: s390: Move static and inline before return type drivers: tty: serial: Move inline before return type USB: serial: safe_serial: Move __inline__ before return type video: fbdev: intelfb: Move inline before return type video: fbdev: omap: Move inline before return type ARM: samsung: usb-ohci: Move inline before return type ALSA: opl4: Move inline before return type arch/arm/include/asm/kvm_hyp.h | 8 ++++---- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- arch/cris/arch-v10/drivers/gpio.c | 4 ++-- arch/frv/include/asm/tlbflush.h | 8 ++++---- arch/ia64/kernel/mca.c | 2 +- arch/ia64/sn/pci/pcibr/pcibr_ate.c | 2 +- arch/ia64/sn/pci/tioce_provider.c | 4 ++-- arch/m68k/coldfire/intc-simr.c | 4 ++-- arch/mips/include/asm/smp.h | 2 +- arch/sh/mm/cache-sh5.c | 2 +- arch/x86/include/asm/efi.h | 4 ++-- drivers/s390/net/ctcm_main.c | 2 +- drivers/s390/net/qeth_l3_main.c | 2 +- drivers/tty/serial/ioc3_serial.c | 4 ++-- drivers/tty/serial/ioc4_serial.c | 4 ++-- drivers/usb/serial/safe_serial.c | 2 +- drivers/video/fbdev/intelfb/intelfbdrv.c | 2 +- drivers/video/fbdev/omap/lcdc.c | 6 +++--- include/linux/platform_data/usb-ohci-s3c2410.h | 2 +- scripts/checkpatch.pl | 12 ++++++++++-- sound/drivers/opl4/opl4_lib.c | 2 +- 21 files changed, 44 insertions(+), 36 deletions(-) -- 2.10.0.rc2.1.g053435c