[PATCH 1/3] ARM: mach-omap2: remove bogus "or_module" from rx51-peripherals

2016-07-19 Thread Paul Gortmaker
r...@lists.infradead.org Signed-off-by: Paul Gortmaker --- arch/arm/mach-omap2/board-rx51-peripherals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index a5ab712c1a59..4ddda1d33ec1

Re: [lkp] [x86] eb008eb6f8: kmsg.glue_helper:Unknown_symbol_blkcipher_walk_done(err#)

2016-07-19 Thread Paul Gortmaker
I inadvertently removed a MODULE_LICENSE tag that was active, hence the module would fail to load, causing the above. Further details are in the commit log of the proposed fix for tip/x86/headers below. Paul. 8<- From 7c8033f0c34c55d6fbb9

Re: [PATCH -next] x86, apic: Remove duplicated include from probe_64.c

2016-07-19 Thread Paul Gortmaker
On 2016-07-19 08:02 AM, Wei Yongjun wrote: > From: Wei Yongjun > > Remove duplicated include. Gah, I had told myself to run make includecheck before and after as a sanity check and then forgot. Thanks -- on both counts. P. -- > > Signed-off-by: Wei Yongjun > --- > arch/x86/kernel/apic/prob

Re: [PATCH] Revert "pinctrl: amd: make it explicitly non-modular"

2016-07-19 Thread Paul Gortmaker
[Re: [PATCH] Revert "pinctrl: amd: make it explicitly non-modular"] On 19/07/2016 (Tue 10:46) Jean Delvare wrote: > Hi Paul, > > On Mon, 18 Jul 2016 20:30:30 -0400, Paul Gortmaker wrote: > > This reverts commit b8c2b10a9bc0272a20e096852f8fbbf361749dda. > > > &

[PATCH] Revert "pinctrl: amd: make it explicitly non-modular"

2016-07-18 Thread Paul Gortmaker
as then revealed (along with other implicit module.h assumptions in gpio, and mfd -- which will be fixed separately.) Cc: Jean Delvare Cc: Linus Walleij Cc: linux-g...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/pinctrl/pinctrl-amd.c | 23 --- 1 file chang

Re: [PATCH v5 4/8] char: rpmb: provide a user space interface

2016-07-18 Thread Paul Gortmaker
On Mon, Jul 18, 2016 at 4:27 PM, Tomas Winkler wrote: > The user space API is achieved via two synchronous IOCTL. > Simplified one, RPMB_IOC_REQ_CMD, were read result cycles is performed > by the framework on behalf the user and second, RPMB_IOC_SEQ_CMD where > the whole RPMB sequence including RE

Re: [PATCH v6 1/3] x86/platform/p2sb: New Primary to Sideband bridge support driver for Intel SOC's

2016-07-18 Thread Paul Gortmaker
[RE: [PATCH v6 1/3] x86/platform/p2sb: New Primary to Sideband bridge support driver for Intel SOC's] On 18/07/2016 (Mon 03:35) Tan, Jui Nee wrote: [...] > > > + > > > + return 0; > > > +} > > > +EXPORT_SYMBOL(p2sb_bar); > > > + > > > +MODULE_LICENSE("GPL"); > > > > ...the above is the on

Re: linux-next: build failure after merge of the tip tree

2016-07-18 Thread Paul Gortmaker
[linux-next: build failure after merge of the tip tree] On 18/07/2016 (Mon 18:29) Stephen Rothwell wrote: > Hi all, > > After merging the tip tree, today's linux-next build (x86_64 allnoconfig) > failed like this: > > In file included from arch/x86/kernel/x8664_ksyms_64.c:10:0: > arch/x86/inclu

[tip:x86/headers] x86/platform: Delete extraneous MODULE_* tags fromm ts5500

2016-07-16 Thread tip-bot for Paul Gortmaker
Commit-ID: 00677f826bd0c1befb87b8cfa10f30bde1cc2f32 Gitweb: http://git.kernel.org/tip/00677f826bd0c1befb87b8cfa10f30bde1cc2f32 Author: Paul Gortmaker AuthorDate: Fri, 15 Jul 2016 19:53:18 -0400 Committer: Ingo Molnar CommitDate: Sat, 16 Jul 2016 22:41:00 +0200 x86/platform: Delete

Re: [tip:x86/headers 6/9] arch/x86/platform/ts5500/ts5500.c:349:16: error: expected declaration specifiers or '...' before string constant

2016-07-15 Thread Paul Gortmaker
t;Technologic Systems TS-5500 platform driver"); >^ The driver has a modular GPIO portion but the platform part is not at all modular - however it doesn't get build coverage in all/yes/no/mod so it was the robot that fo

Re: [v10, 3/7] soc: fsl: add GUTS driver for QorIQ platforms

2016-07-15 Thread Paul Gortmaker
[Re: [v10, 3/7] soc: fsl: add GUTS driver for QorIQ platforms] On 15/07/2016 (Fri 14:12) Scott Wood wrote: > On Fri, 2016-07-15 at 12:43 -0400, Paul Gortmaker wrote: > > > +source "drivers/soc/fsl/qe/Kconfig" [...] > > > + > > > +config FSL_GUTS >

Re: [v10, 3/7] soc: fsl: add GUTS driver for QorIQ platforms

2016-07-15 Thread Paul Gortmaker
On Wed, May 4, 2016 at 11:12 PM, Yangbo Lu wrote: > The global utilities block controls power management, I/O device > enabling, power-onreset(POR) configuration monitoring, alternate > function selection for multiplexed signals,and clock control. > > This patch adds GUTS driver to manage and acce

[PATCH] rcu: don't use modular infrastructure in non-modular code

2016-07-15 Thread Paul Gortmaker
hese files. We leave moduleparam.h behind since the files instantiate some boot time configuration parameters with module_param() still. Cc: "Paul E. McKenney" Cc: Josh Triplett Cc: Steven Rostedt Cc: Mathieu Desnoyers Cc: Lai Jiangshan Signed-off-by: Paul Gortmaker --- ker

Re: [PATCH v2 2/2] arm64: implement live patching

2016-07-15 Thread Paul Gortmaker
On Mon, Jun 27, 2016 at 11:17 AM, Torsten Duwe wrote: > On top of FTRACE_WITH_REGS and the klp changes that go into v4.7 > this is straightforward. > > Signed-off-by: Torsten Duwe > --- > arch/arm64/Kconfig | 3 +++ > arch/arm64/include/asm/livepatch.h | 37 +

Re: [PATCH v3 08/12] irqchip: add J-Core AIC driver

2016-07-15 Thread Paul Gortmaker
On Wed, May 25, 2016 at 1:43 AM, Rich Felker wrote: > There are two versions of the J-Core interrupt controller in use, aic1 > which generates interrupts with programmable priorities, but only > supports 8 irq lines and maps them to cpu traps in the range 17 to 24, > and aic2 which uses traps in t

Re: [PATCH v3 6/8] thunderbolt: Networking state machine

2016-07-14 Thread Paul Gortmaker
On Thu, Jul 14, 2016 at 7:28 AM, Amir Levy wrote: > Negotiation states that a peer goes through in order to establish > the communication with the second peer. > This includes communication with upper layer and additional > infrastructure support to communicate with the second peer through ICM. >

Re: [PATCH v6 1/3] x86/platform/p2sb: New Primary to Sideband bridge support driver for Intel SOC's

2016-07-14 Thread Paul Gortmaker
On Thu, Jul 14, 2016 at 4:11 AM, Tan Jui Nee wrote: > From: Andy Shevchenko > > There is already one and at least one more user coming which > require an access to Primary to Sideband bridge (P2SB) in order > to get IO or MMIO bar hidden by BIOS. > Create a driver to access P2SB for x86 devices.

Re: [PATCH v10 2/4] CMDQ: Mediatek CMDQ driver

2016-07-14 Thread Paul Gortmaker
On Thu, Jul 14, 2016 at 7:28 AM, HS Liao wrote: > This patch is first version of Mediatek Command Queue(CMDQ) driver. The > CMDQ is used to help write registers with critical time limitation, > such as updating display configuration during the vblank. It controls > Global Command Engine (GCE) hard

Re: [PATCH v18 4/6] fpga: add fpga bridge framework

2016-07-14 Thread Paul Gortmaker
On Tue, Jul 12, 2016 at 3:36 PM, Alan Tull wrote: > This framework adds API functions for enabling/ > disabling FPGA bridges under kernel control. > > This allows the Linux kernel to disable FPGA bridges > during FPGA reprogramming and to enable FPGA bridges > when FPGA reprogramming is done. Thi

Re: [PATCH v18 6/6] ARM: socfpga: fpga bridge driver support

2016-07-14 Thread Paul Gortmaker
On Tue, Jul 12, 2016 at 3:36 PM, Alan Tull wrote: > Supports Altera SOCFPGA bridges: > * fpga2sdram > * fpga2hps > * hps2fpga > * lwhps2fpga > > Allows enabling/disabling the bridges through the FPGA > Bridge Framework API functions. > > The fpga2sdram driver only supports enabling and disabli

Re: [PATCH v7 4/9] acpi/arm64: Add GTDT table parse driver

2016-07-14 Thread Paul Gortmaker
On Wed, Jul 13, 2016 at 1:53 PM, wrote: > From: Fu Wei > > This patch adds support for parsing arch timer in GTDT, > provides some kernel APIs to parse all the PPIs and > always-on info in GTDT and export them. > > By this driver, we can simplify arm_arch_timer drivers, and > separate the ACPI G

Re: [PATCH 0/8] x86: audit and remove needless module.h includes

2016-07-14 Thread Paul Gortmaker
[Re: [PATCH 0/8] x86: audit and remove needless module.h includes] On 14/07/2016 (Thu 20:39) Ingo Molnar wrote: > > * Paul Gortmaker wrote: > > > > I'll continue testing with the setup_percpu.c change left out. > > > > Let me know if you want a resend or

[tip:x86/headers] x86: Audit and remove any remaining unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: eb008eb6f8b689853d6e9f4ae3ff56ea734e4319 Gitweb: http://git.kernel.org/tip/eb008eb6f8b689853d6e9f4ae3ff56ea734e4319 Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:19:01 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 15:07:00 +0200 x86: Audit and remove

[tip:x86/headers] x86/platform: Audit and remove any unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: cc3ae7b0af27118994c1e491382b253be3b762bf Gitweb: http://git.kernel.org/tip/cc3ae7b0af27118994c1e491382b253be3b762bf Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:18:58 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 15:06:59 +0200 x86/platform: Audit and

[tip:x86/headers] x86/lib: Audit and remove any unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: e683014c2113d374b8716a7c938803c2f578efd5 Gitweb: http://git.kernel.org/tip/e683014c2113d374b8716a7c938803c2f578efd5 Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:18:57 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 15:06:58 +0200 x86/lib: Audit and

[tip:x86/headers] x86/kvm: Audit and remove any unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: 1767e931e3c3024b1f0d115082179191f5d652c2 Gitweb: http://git.kernel.org/tip/1767e931e3c3024b1f0d115082179191f5d652c2 Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:19:00 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 15:07:00 +0200 x86/kvm: Audit and

[tip:x86/headers] x86/xen: Audit and remove any unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: 7a2463dcacee3f2f36c78418c201756372eeea6b Gitweb: http://git.kernel.org/tip/7a2463dcacee3f2f36c78418c201756372eeea6b Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:18:59 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 15:06:59 +0200 x86/xen: Audit and

[tip:x86/headers] x86/kernel: Audit and remove any unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: 186f43608a5c827f8284fe4559225b4dccaa49ef Gitweb: http://git.kernel.org/tip/186f43608a5c827f8284fe4559225b4dccaa49ef Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:18:56 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 15:06:41 +0200 x86/kernel: Audit and

[tip:x86/headers] x86/mm: Audit and remove any unnecessary uses of module.h

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: 4b599fedb7eeea4c995e655a938b5ec419386ddf Gitweb: http://git.kernel.org/tip/4b599fedb7eeea4c995e655a938b5ec419386ddf Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:18:55 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 13:04:20 +0200 x86/mm: Audit and remove

[tip:x86/headers] x86: Don't use module.h just for AUTHOR / LICENSE tags

2016-07-14 Thread tip-bot for Paul Gortmaker
Commit-ID: 84e629b66882f8d1b6e40060e85e5bb27c892d42 Gitweb: http://git.kernel.org/tip/84e629b66882f8d1b6e40060e85e5bb27c892d42 Author: Paul Gortmaker AuthorDate: Wed, 13 Jul 2016 20:18:54 -0400 Committer: Ingo Molnar CommitDate: Thu, 14 Jul 2016 13:04:20 +0200 x86: Don't use mod

Re: [PATCH 0/8] x86: audit and remove needless module.h includes

2016-07-14 Thread Paul Gortmaker
[Re: [PATCH 0/8] x86: audit and remove needless module.h includes] On 14/07/2016 (Thu 15:04) Ingo Molnar wrote: > > * Paul Gortmaker wrote: > > > To that end, I have done allmodconfig, allyesconfig and allnoconfig > > for both 32 bit and 64 bit x86 with these chan

[PATCH 6/8] x86: xen: audit and remove any unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
Cc: xen-de...@lists.xenproject.org Signed-off-by: Paul Gortmaker --- arch/x86/xen/debugfs.c | 1 - arch/x86/xen/enlighten.c | 2 +- arch/x86/xen/mmu.c | 3 ++- arch/x86/xen/p2m.c | 2 +- arch/x86/xen/platform-pci-unplug.c | 2 +- arch/x86/xen/setup.c

[PATCH 1/8] x86: don't use module.h just for AUTHOR / LICENSE tags

2016-07-13 Thread Paul Gortmaker
ments. Cc: Arjan van de Ven Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x...@kernel.org Signed-off-by: Paul Gortmaker --- arch/x86/kernel/test_rodata.c | 5 - arch/x86/mm/dump_pagetables.c | 6 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --g

[PATCH 2/8] x86: mm: audit and remove any unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
that is tossed when MODULES=n). Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x...@kernel.org Signed-off-by: Paul Gortmaker --- arch/x86/mm/amdtopology.c | 1 - arch/x86/mm/highmem_32.c | 2 +- arch/x86/mm/init_32.c | 1 - arch/x86/mm

[PATCH 4/8] x86: lib: audit and remove any unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
org Signed-off-by: Paul Gortmaker --- arch/x86/lib/cache-smp.c| 2 +- arch/x86/lib/cpu.c | 3 ++- arch/x86/lib/csum-partial_64.c | 2 +- arch/x86/lib/csum-wrappers_64.c | 2 +- arch/x86/lib/delay.c| 2 +- arch/x86/lib/memcpy_32.c| 2 +- arch/x86/li

[PATCH 7/8] x86: kvm: audit and remove any unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
;H. Peter Anvin" Cc: x...@kernel.org Cc: k...@vger.kernel.org Signed-off-by: Paul Gortmaker --- arch/x86/kvm/cpuid.c | 2 +- arch/x86/kvm/emulate.c | 1 - arch/x86/kvm/iommu.c | 2 +- arch/x86/kvm/irq.c | 2 +- arch/x86/kvm/lapic.c | 2 +- arch/x86/kvm/mmu.c | 3 ++- arch/x86/kvm/

[PATCH 0/8] x86: audit and remove needless module.h includes

2016-07-13 Thread Paul Gortmaker
aul. [1] https://lwn.net/Articles/453517/ --- Cc: Arjan van de Ven Cc: Boris Ostrovsky Cc: David Vrabel Cc: "H. Peter Anvin" Cc: Ingo Molnar Cc: Juergen Gross Cc: Paolo Bonzini Cc: "Radim Krčmář" Cc: Thomas Gleixner Cc: k...@vger.kernel.org Cc: x...@kernel.org Cc: xen-

[PATCH 8/8] x86: audit and remove any remaining unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
too; it is uncore.c that uses module.h and not uncore.h; hence the relocation done there. Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x...@kernel.org Signed-off-by: Paul Gortmaker --- arch/x86/crypto/glue_helper.c| 4 +--- arch/x86/events/amd/ibs.c| 3 ++-

[PATCH 3/8] x86: kernel: audit and remove any unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
exception table entry stuff, and for things like __init_or_module (code that is tossed when MODULES=n). Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x...@kernel.org Signed-off-by: Paul Gortmaker --- arch/x86/include/asm/topology.h| 1 + arch/x86/kernel/a

[PATCH 5/8] x86: platform: audit and remove any unnecessary uses of module.h

2016-07-13 Thread Paul Gortmaker
that is a no-op when builtin. Finally, the 32 bit build coverage of olpc_ofw revealed a couple implicit includes, which were pretty self evident to fix based on what gcc was complaining about. Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x...@kernel.org Signed-of

[PATCH] ACPI / PCI: make pci_slot explicitly non-modular

2016-07-11 Thread Paul Gortmaker
avy handed. The license/author info is found at the top of the file, so we just remove the MODULE_LICENSE etc and the include of module.h We delete the DRIVER_VERSION macro as well since it is unused. Cc: "Rafael J. Wysocki" Cc: Len Brown Cc: linux-a...@vger.kernel.org Signed-of

[PATCH] ACPI / PMIC: remove modular references from non-modular code

2016-07-11 Thread Paul Gortmaker
there. Cc: "Rafael J. Wysocki" Cc: Len Brown Cc: linux-a...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/acpi/pmic/intel_pmic.c| 4 +--- drivers/acpi/pmic/intel_pmic_bxtwc.c | 6 +- drivers/acpi/pmic/intel_pmic_xpower.c | 7 ++- 3 files changed, 4 inse

[PATCH] ACPI / lpat: make it explicitly non-modular

2016-07-11 Thread Paul Gortmaker
SE and the include of module.h We add an include of export.h since the file exports some symbols. Cc: "Rafael J. Wysocki" Cc: Len Brown Cc: linux-a...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/acpi/acpi_lpat.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff

[PATCH] acpi: make dock explicitly non-modular

2016-07-11 Thread Paul Gortmaker
nse/author info is found at the top of the file, so we just remove the MODULE_LICENSE etc and the include of module.h The file does still have some module_param() so we add the right include for that infrastructure. Cc: "Rafael J. Wysocki" Cc: Len Brown Cc: linux-a...@vger.kernel.org

[PATCH -next] bpf: make inode code explicitly non-modular

2016-07-11 Thread Paul Gortmaker
en reading the driver there is no doubt it is builtin-only. Note that MODULE_ALIAS is a no-op for non-modular code. We replace module.h with init.h since the file does use __init. Cc: Alexei Starovoitov Cc: net...@vger.kernel.org Signed-off-by: Paul Gortmaker --- kernel/bpf/inode.c | 4 +-

Re: [PATCH v2 05/10] power/reset: Add reset driver support for nuc900

2016-07-10 Thread Paul Gortmaker
[Re: [PATCH v2 05/10] power/reset: Add reset driver support for nuc900] On 11/07/2016 (Mon 10:30) Wan Zongshun wrote: > > > On 2016年07月11日 05:56, Paul Gortmaker wrote: > >On Sun, Jul 10, 2016 at 3:27 AM, Wan Zongshun wrote > >>This driver is to add reset s

Re: [PATCH 01/16] gpu: ipu-v3: Add Video Deinterlacer unit

2016-07-10 Thread Paul Gortmaker
On Thu, Jul 7, 2016 at 7:03 PM, Steve Longerbeam wrote: > Adds the Video Deinterlacer (VDIC) unit. > > Signed-off-by: Steve Longerbeam > --- > drivers/gpu/ipu-v3/Makefile | 2 +- > drivers/gpu/ipu-v3/ipu-common.c | 11 ++ > drivers/gpu/ipu-v3/ipu-prv.h| 6 + > drivers/gpu/ipu-v3/ipu

Re: [PATCH v15 07/10] arm64: kprobes instruction simulation support

2016-07-10 Thread Paul Gortmaker
On Fri, Jul 8, 2016 at 12:35 PM, David Long wrote: > From: Sandeepa Prabhu > > Kprobes needs simulation of instructions that cannot be stepped > from a different memory location, e.g.: those instructions > that uses PC-relative addressing. In simulation, the behaviour > of the instruction is impl

Re: [PATCH v2 05/10] power/reset: Add reset driver support for nuc900

2016-07-10 Thread Paul Gortmaker
On Sun, Jul 10, 2016 at 3:27 AM, Wan Zongshun wrote > This driver is to add reset support for nuc900 series, > currently, it only supports nuc970 SoC reset. > > Signed-off-by: Wan Zongshun > --- > drivers/power/reset/Kconfig| 7 +++ > drivers/power/reset/Makefile | 1 + > drivers

Re: [PATCH v2 02/10] irqchip: add irqchip driver for nuc900

2016-07-10 Thread Paul Gortmaker
On Sun, Jul 10, 2016 at 3:27 AM, Wan Zongshun wrote: > This patch is to add irqchip driver support for nuc900 plat, > current this driver only supports nuc970 SoC. > > Signed-off-by: Wan Zongshun > --- > arch/arm/mach-w90x900/include/mach/irqs.h | 5 + > drivers/irqchip/Makefile

Re: [PATCH v7 3/4] perf: xgene: Add APM X-Gene SoC Performance Monitoring Unit driver

2016-07-09 Thread Paul Gortmaker
On Wed, Jul 6, 2016 at 8:07 PM, Tai Nguyen wrote: > Signed-off-by: Tai Nguyen > --- > Documentation/perf/xgene-pmu.txt | 48 ++ > drivers/perf/Kconfig |7 + > drivers/perf/Makefile|1 + > drivers/perf/xgene_pmu.c | 1398 > +++

Re: [PATCH V2 04/10] firmware: tegra: add IVC library

2016-07-09 Thread Paul Gortmaker
On Tue, Jul 5, 2016 at 5:04 AM, Joseph Lo wrote: > The Inter-VM communication (IVC) is a communication protocol, which is > designed for interprocessor communication (IPC) or the communication > between the hypervisor and the virtual machine with a guest OS on it. So > it can be translated as inte

Re: [PATCH v2 2/6] clk: mvebu: Add the xtal clock for Armada 3700 SoC

2016-07-09 Thread Paul Gortmaker
On Thu, Jul 7, 2016 at 6:37 PM, Gregory CLEMENT wrote: > This clock is the parent of all the Armada 3700 clocks. It is a fixed > rate clock which depends on the gpio configuration read when resetting > the SoC. > > Signed-off-by: Gregory CLEMENT > --- > drivers/clk/mvebu/Kconfig| 3

Re: [PATCH 14/14] PCI: xgene: make it explicitly non-modular

2016-07-09 Thread Paul Gortmaker
[Re: [PATCH 14/14] PCI: xgene: make it explicitly non-modular] On 07/07/2016 (Thu 15:42) Duc Dang wrote: > On Thu, Jul 7, 2016 at 3:35 PM, Tanmay Inamdar wrote: > > > > > > On Sat, Jul 2, 2016 at 4:13 PM, Paul Gortmaker > > wrote: > >> > >> The Kcon

Re: [PATCH 04/14] PCI: generic: make it explicitly non-modular

2016-07-06 Thread Paul Gortmaker
[Re: [PATCH 04/14] PCI: generic: make it explicitly non-modular] On 06/07/2016 (Wed 18:02) Will Deacon wrote: > On Sat, Jul 02, 2016 at 07:13:24PM -0400, Paul Gortmaker wrote: > > The Kconfig currently controlling compilation of this code is: > > > > drivers/pc

Re: [PATCH 2/6] mfd: as3722: Make it explicitly non-modular

2016-07-06 Thread Paul Gortmaker
[Re: [PATCH 2/6] mfd: as3722: Make it explicitly non-modular] On 05/07/2016 (Tue 11:18) Laxman Dewangan wrote: > > On Tuesday 05 July 2016 06:55 AM, Paul Gortmaker wrote: > >The Kconfig currently controlling compilation of this code is: > > > >drivers/mfd/Kconfig:conf

Re: [PATCH 3/6] mfd: intel_msic: Make it explicitly non-modular

2016-07-06 Thread Paul Gortmaker
[Re: [PATCH 3/6] mfd: intel_msic: Make it explicitly non-modular] On 05/07/2016 (Tue 13:08) Mika Westerberg wrote: > On Mon, Jul 04, 2016 at 09:25:41PM -0400, Paul Gortmaker wrote: > > The Kconfig currently controlling compilation of this code is: > > > > drive

Re: [PATCH] pinctrl: imx21: include linux/module.h

2016-07-06 Thread Paul Gortmaker
[Re: [PATCH] pinctrl: imx21: include linux/module.h] On 06/07/2016 (Wed 10:15) Fabio Estevam wrote: > Hi Arnd, > > On Wed, Jul 6, 2016 at 9:52 AM, Arnd Bergmann wrote: > > The pinctrl driver includes a device table, but the macro used for > > declaring it is declared in a header that is not vis

Re: [PATCH 2/3] pinctrl: Add STM32F746 MCU support

2016-07-05 Thread Paul Gortmaker
[[PATCH 2/3] pinctrl: Add STM32F746 MCU support] On 05/07/2016 (Tue 15:40) Alexandre TORGUE wrote: > From: Maxime Coquelin > > This patch which adds STM32F746 pinctrl and GPIO support, relies on the > generic STM32 pinctrl driver. > > Signed-off-by: Maxime Coquelin > Signed-off-by: Alexandre

Re: [PATCH 06/10] clk: samsung make clk-exynos-audss explicitly non-modular

2016-07-05 Thread Paul Gortmaker
[Re: [PATCH 06/10] clk: samsung make clk-exynos-audss explicitly non-modular] On 05/07/2016 (Tue 11:04) Krzysztof Kozlowski wrote: > On 07/04/2016 11:12 PM, Paul Gortmaker wrote: > > The Kconfig currently controlling compilation of this code is: > > > > arch/arm/mach-exyn

Re: [PATCH 06/10] clk: samsung make clk-exynos-audss explicitly non-modular

2016-07-05 Thread Paul Gortmaker
[Re: [PATCH 06/10] clk: samsung make clk-exynos-audss explicitly non-modular] On 05/07/2016 (Tue 13:02) Geert Uytterhoeven wrote: > Hi Paul, > > On Mon, Jul 4, 2016 at 11:12 PM, Paul Gortmaker > wrote: > > We also delete the MODULE_LICENSE tags etc. since all that informat

[PATCH 3/6] mfd: intel_msic: Make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
at the top of the file in the comments. Cc: Lee Jones Cc: Mika Westerberg Signed-off-by: Paul Gortmaker --- drivers/mfd/intel_msic.c | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/drivers/mfd/intel_msic.c b/drivers/mfd/intel_msic.c index 25d486c543cb..2017446c5

[PATCH 2/6] mfd: as3722: Make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Samuel Ortiz Cc: Lee Jones Cc: Florian Lobmaier Cc: Laxman Dewangan Signed-off-by: Paul Gortmaker --- drivers/mfd/as3722.c | 12 ++-- 1 file changed, 2 inserti

[PATCH 4/6] mfd: smsc-ece1099: Make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
op for non-modular code. We also delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Samuel Ortiz Cc: Lee Jones Cc: Sourav Poddar Signed-off-by: Paul Gortmaker --- drivers/mfd/smsc-ece1099.c | 11 ++- 1 file

[PATCH 5/6] mfd: sun6i-prcm: Make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
ntained at the top of the file in the comments. Cc: Samuel Ortiz Cc: Lee Jones Cc: Maxime Ripard Cc: Boris BREZILLON Signed-off-by: Paul Gortmaker --- drivers/mfd/sun6i-prcm.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/mfd/sun6i-prcm.c b/drivers/mfd/su

[PATCH 6/6] mfd: twl-core: Make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
ready contained at the top of the file in the comments. Cc: Tony Lindgren Cc: Samuel Ortiz Cc: Lee Jones Cc: linux-o...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/mfd/twl-core.c | 9 + 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/drivers/mfd/twl-core.c b/

[PATCH 0/6] mfd: trivial demodularization of non-modular drivers.

2016-07-04 Thread Paul Gortmaker
ux-next for arm, arm64 and x86-64 to ensure no typos or similar issues crept in. Paul. --- Cc: Boris BREZILLON Cc: Florian Lobmaier Cc: Laxman Dewangan Cc: Lee Jones Cc: Maxime Ripard Cc: Mika Westerberg Cc: Samuel Ortiz Cc: Sourav Poddar Cc: Thor Thayer Cc: Tony Lindgren Cc: linux-o...@v

[PATCH 1/6] mfd: altera-a10sr: make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
t it would be via builtin_driver().] Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code. We also delete the MODULE_LICENSE tag etc. since all that information was (or is now) contained at the top of the file in the comments. Cc: Thor Thayer Cc: Lee Jones Signed-off-by: Paul

[PATCH -next] connector: make cn_proc explicitly non-modular

2016-07-04 Thread Paul Gortmaker
s, so that when reading the driver there is no doubt it is builtin-only. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. Cc: Evgeniy Polyakov Cc: net...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers

[PATCH] amba: tegra-ahb: make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
(or is now) contained at the top of the file in the comments. Cc: Russell King Cc: Stephen Warren Cc: Hiroshi DOYU Cc: Thierry Reding Cc: Alexandre Courbot Cc: linux-te...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/amba/tegra-ahb.c | 11 --- 1 file changed, 4 insert

[PATCH 05/10] clk: oxnas: make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
uses the same init level priority as builtin_platform_driver() the init ordering remains unchanged with this commit. Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code. Cc: Michael Turquette Cc: Stephen Boyd Cc: Neil Armstrong Cc: linux-...@vger.kernel.org Signed-off-by: Paul Go

[PATCH 02/10] clk: meson: make gxbb explicitly non-modular

2016-07-04 Thread Paul Gortmaker
. since all that information was (or is now) contained at the top of the file in the comments. Cc: Michael Turquette Cc: Stephen Boyd Cc: Carlo Caione Cc: Kevin Hilman Cc: linux-...@vger.kernel.org Cc: linux-amlo...@lists.infradead.org Signed-off-by: Paul Gortmaker --- drivers/clk/meson/gxbb.c

[PATCH 03/10] clk: mvebu: make cp110-system-controller explicitly non-modular

2016-07-04 Thread Paul Gortmaker
l Turquette Cc: Stephen Boyd Cc: Thomas Petazzoni Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/mvebu/cp110-system-controller.c | 34 +++-- 1 file changed, 3 insertions(+), 31 deletions(-) diff --git a/drivers/clk/mvebu/cp110-system-controll

[PATCH 06/10] clk: samsung make clk-exynos-audss explicitly non-modular

2016-07-04 Thread Paul Gortmaker
Venna Cc: linux-samsung-...@vger.kernel.org Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/samsung/clk-exynos-audss.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/drivers/clk/samsung/clk-exynos-audss.c b/drivers/clk/samsung/clk-exyn

[PATCH 01/10] clk: meson8b: make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
...@lists.infradead.org Signed-off-by: Paul Gortmaker --- drivers/clk/meson/meson8b-clkc.c | 19 --- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/drivers/clk/meson/meson8b-clkc.c b/drivers/clk/meson/meson8b-clkc.c index b1902e91213d..4c9413cdf373 100644 --- a/drivers/clk

[PATCH 00/10] clk: fix/remove module usage in non-modular code

2016-07-04 Thread Paul Gortmaker
Cc: Thomas Petazzoni Cc: Tomasz Figa Cc: linux-amlo...@lists.infradead.org Cc: linux-...@vger.kernel.org Cc: linux-o...@vger.kernel.org Cc: linux-samsung-...@vger.kernel.org Cc: linux-te...@vger.kernel.org Paul Gortmaker (10): clk: meson8b: make it explicitly non-modular clk: meson: m

[PATCH 10/10] clk: ti: make clk-dra7-atl explicitly non-modular

2016-07-04 Thread Paul Gortmaker
nts. Cc: Tero Kristo Cc: Michael Turquette Cc: Peter Ujfalusi Cc: Stephen Boyd Cc: linux-o...@vger.kernel.org Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/ti/clk-dra7-atl.c | 20 +++- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git

[PATCH 09/10] clk: tegra: make clk-tegra124-dfll-fcpu explicitly non-modular

2016-07-04 Thread Paul Gortmaker
r Frid Cc: Paul Walmsley Cc: linux-...@vger.kernel.org Cc: linux-te...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/tegra/clk-tegra124-dfll-fcpu.c | 16 ++-- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/drivers/clk/tegra/clk-tegra124-dfll-fcpu.c b/d

[PATCH 04/10] clk: mvebu: make ap806-system-controller explicitly non-modular

2016-07-04 Thread Paul Gortmaker
l Turquette Cc: Stephen Boyd Cc: Thomas Petazzoni Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/mvebu/ap806-system-controller.c | 23 +++ 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/drivers/clk/mvebu/ap806-system-controller.c

[PATCH 07/10] clk: samsung: make clk-s5pv210-audss explicitly non-modular

2016-07-04 Thread Paul Gortmaker
: Stephen Boyd Cc: linux-samsung-...@vger.kernel.org Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/samsung/clk-s5pv210-audss.c | 29 ++--- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/drivers/clk/samsung/clk-s5pv210-audss.c

[PATCH 08/10] clk: sunxi: make clk-* explicitly non-modular

2016-07-04 Thread Paul Gortmaker
c: Stephen Boyd Cc: Maxime Ripard Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/clk/sunxi/clk-factors.c | 1 - drivers/clk/sunxi/clk-sun6i-apb0-gates.c | 9 ++--- drivers/clk/sunxi/clk-sun6i-apb0.c | 9 ++--- drivers/clk/sunxi/clk-sun6i-ar100.c

[PATCH] firmware: qcom_scm: make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
now) contained at the top of the file in the comments. Cc: Andy Gross Cc: David Brown Cc: linux-arm-...@vger.kernel.org Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/firmware/qcom_scm.c | 19 +-- 1 file changed, 5 insertions(+), 14 deletions(-) diff

Re: [PATCH 3/4] bus: tegra-aconnect: make it explicitly non-modular

2016-07-04 Thread Paul Gortmaker
[Re: [PATCH 3/4] bus: tegra-aconnect: make it explicitly non-modular] On 04/07/2016 (Mon 10:17) Jon Hunter wrote: > Hi Paul, > > On 03/07/16 18:30, Paul Gortmaker wrote: > > The Kconfig currently controlling compilation of this code is: > > > > drivers/bus/Kc

[PATCH] cxl: make base more explicitly non-modular

2016-07-03 Thread Paul Gortmaker
e the file is doing other modular stuff (module_get/put) even though it is built-in. Cc: Ian Munsie Cc: Michael Neuling Cc: linuxppc-...@lists.ozlabs.org Signed-off-by: Paul Gortmaker --- drivers/misc/cxl/base.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/mis

[PATCH] base: soc: make it explicitly non-modular

2016-07-03 Thread Paul Gortmaker
is no doubt it is builtin-only. Since module_init was not in use by this code, the init ordering remains unchanged with this commit. Cc: Lee Jones Cc: Greg Kroah-Hartman Signed-off-by: Paul Gortmaker --- drivers/base/soc.c | 9 - 1 file changed, 9 deletions(-) diff --git a/drivers

[PATCH] PNP: make pnpbios core explicitly non-modular

2016-07-03 Thread Paul Gortmaker
oubt it is builtin-only. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. Cc: "Rafael J. Wysocki" Signed-off-by: Paul Gortmaker --- drivers/pnp/pnpbios/core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deleti

[PATCH] vme: make core vme support explicitly non-modular

2016-07-03 Thread Paul Gortmaker
ss_bind_attrs" to be concerned about when we drop the ".remove" code from this file. Since module_init was not in use by this code, the init ordering remains unchanged with this commit. Cc: Martyn Welch Cc: Manohar Vanga Cc: Greg Kroah-Hartman Cc: de...@driverdev.osuosl.org Signed-off-b

[PATCH 1/4] bus: brcmstb_gisb: make it explicitly non-modular

2016-07-03 Thread Paul Gortmaker
ly. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. Cc: Brian Norris Acked-by: Brian Norris Cc: Gregory Fong Cc: Florian Fainelli Acked-by: Florian Fainelli Cc: linux-arm-ker...@lists.infradead.org Signed-of

[PATCH 2/4] bus: imx-weim: make it explicitly non-modular

2016-07-03 Thread Paul Gortmaker
e the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Shawn Guo Acked-by: Shawn Guo Cc: Alison Chaiken Cc: Sascha Hauer Cc: Wolfram Sang Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Paul Gortmaker --- drivers/bus/imx-w

[PATCH 4/4] bus: simple-pm-bus: convert bool SIMPLE_PM_BUS to tristate

2016-07-03 Thread Paul Gortmaker
oesn't change the lack of run time testing ; this change is only tested for sucessful compile and modpost. Cc: Geert Uytterhoeven Cc: Kevin Hilman Cc: Simon Horman Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Paul Gortmaker --- drivers/bus/Kconfig | 2 +- 1 file changed, 1 ins

[PATCH v2 0/4] bus: remove unused modular code from non-modular drivers

2016-07-03 Thread Paul Gortmaker
ing Cc: Wolfram Sang Cc: linux-arm-ker...@lists.infradead.org Cc: linux-te...@vger.kernel.org Paul Gortmaker (4): bus: brcmstb_gisb: make it explicitly non-modular bus: imx-weim: make it explicitly non-modular bus: tegra-aconnect: make it explicitly non-modular bus: simple-pm-bus: convert bool SIMPLE_

[PATCH 3/4] bus: tegra-aconnect: make it explicitly non-modular

2016-07-03 Thread Paul Gortmaker
he comments. Cc: Stephen Warren Cc: Thierry Reding Cc: Alexandre Courbot Cc: Jon Hunter Cc: linux-te...@vger.kernel.org Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Paul Gortmaker --- drivers/bus/tegra-aconnect.c | 22 +- 1 file changed, 5 insertions(+), 17 d

[PATCH] staging: fsl-mc: make bus/mc-bus explicitly non-modular

2016-07-02 Thread Paul Gortmaker
d at the top of the file in the comments. We don't replace module.h with init.h since the file does make some references to "struct *module" for processing other modules. Cc: "J. German Rivera" Cc: Greg Kroah-Hartman Cc: de...@driverdev.osuosl.org Signed-off-by: Paul Gortm

Re: [PATCH 0/4] sh: fix up modular use in non-modular code

2016-07-02 Thread Paul Gortmaker
[Re: [PATCH 0/4] sh: fix up modular use in non-modular code] On 02/06/2016 (Thu 15:54) Yoshinori Sato wrote: > On Fri, 27 May 2016 01:53:34 +0900, > Rich Felker wrote: > > > > On Thu, May 26, 2016 at 12:45:57PM -0400, Paul Gortmaker wrote: > > > [[PATCH 0/4] sh

[PATCH 00/14] PCI: trivial demodularization of builtin code

2016-07-02 Thread Paul Gortmaker
ux-...@vger.kernel.org Cc: linux-te...@vger.kernel.org Paul Gortmaker (14): PCI: armada8k: make it explicitly non-modular PCI: artpec6: make it explicitly non-modular PCI: designware-plat: make it explicitly non-modular PCI: generic: make it explicitly non-modular PCI: hisi: make it exp

[PATCH 04/14] PCI: generic: make it explicitly non-modular

2016-07-02 Thread Paul Gortmaker
dular code. We also delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Will Deacon Cc: Bjorn Helgaas Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/pci/host/pci-host-generic.c | 10 ++--

[PATCH 05/14] PCI: hisi: make it explicitly non-modular

2016-07-02 Thread Paul Gortmaker
. We also delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Zhou Wang Cc: Dacai Zhu Cc: Gabriele Paoloni Cc: Bjorn Helgaas Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/pci/host/pcie-h

[PATCH 07/14] PCI: layerscape: make it explicitly non-modular

2016-07-02 Thread Paul Gortmaker
on-modular code. We also delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Minghuan Lian Cc: Mingkai Hu Cc: Roy Zang Cc: Bjorn Helgaas Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/pc

[PATCH 06/14] PCI: keystone: make it explicitly non-modular

2016-07-02 Thread Paul Gortmaker
code. We also delete the MODULE_LICENSE tag etc. since all that information is already contained at the top of the file in the comments. Cc: Murali Karicheri Cc: Bjorn Helgaas Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/pci/host/pci-keystone.c | 10 ++ 1 fi

[PATCH 02/14] PCI: artpec6: make it explicitly non-modular

2016-07-02 Thread Paul Gortmaker
dular code. Cc: Niklas Cassel Cc: Jesper Nilsson Cc: Bjorn Helgaas Cc: linux-...@vger.kernel.org Signed-off-by: Paul Gortmaker --- drivers/pci/host/pcie-artpec6.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/pci/host/pcie-artpec6.c b/drivers/pci/host/pc

<    2   3   4   5   6   7   8   9   10   11   >