linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/23] powerpc: Fix W=1 compile errors
@ 2020-12-21  7:41 Cédric Le Goater
  2020-12-21  7:42 ` [PATCH 01/23] powerpc/mm: Include __find_linux_pte() prototype Cédric Le Goater
                   ` (22 more replies)
  0 siblings, 23 replies; 33+ messages in thread
From: Cédric Le Goater @ 2020-12-21  7:41 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: Cédric Le Goater

Hello,

Here is an assorted collection of fixes for W=1.

Cheers,

C. 

Cédric Le Goater (23):
  powerpc/mm: Include __find_linux_pte() prototype
  powerpc/pseries/ras: Remove unused variable 'status'
  powerpc/pseries/eeh: Make pseries_pcibios_bus_add_device() static
  powerpc/pseries/ras: Make init_ras_hotplug_IRQ() static
  powerpc/pmem: Include pmem prototypes
  powerpc/setup_64: Make some routines static
  powerpc/mce: Include prototypes
  powerpc/smp: Include tick_broadcast() prototype
  powerpc/smp: Make debugger_ipi_callback() static
  powerpc/optprobes: Remove unused routine patch_imm32_load_insns()
  powerpc/optprobes: Make patch_imm64_load_insns() static
  powerpc/mm: Declare some prototypes
  powerpc/mm: Move hpte_insert_repeating() prototype
  powerpc/mm: Declare preload_new_slb_context() prototype
  powerpc/mm/hugetlb: Make pseries_alloc_bootmem_huge_page() static
  powerpc/mm: Declare arch_report_meminfo() prototype.
  powerpc/watchdog: Declare soft_nmi_interrupt() prototype
  KVM: PPC: Make the VMX instruction emulation routines static
  KVM: PPC: Book3S HV: Include prototypes
  KVM: PPC: Book3S HV: Declare some prototypes
  powerpc/pseries: Make IOV setup routines static
  powerpc/pcidn: Make IOV setup routines static
  powerpc/pseries/eeh: Make pseries_send_allow_unfreeze() static

 arch/powerpc/include/asm/asm-prototypes.h     |  1 +
 arch/powerpc/include/asm/book3s/64/mmu-hash.h |  9 ++++++++
 arch/powerpc/include/asm/kvm_book3s.h         |  7 +++++++
 arch/powerpc/include/asm/pgtable.h            |  3 +++
 arch/powerpc/kernel/mce.c                     |  1 +
 arch/powerpc/kernel/optprobes.c               | 21 +------------------
 arch/powerpc/kernel/setup_64.c                |  7 ++++---
 arch/powerpc/kernel/smp.c                     |  3 ++-
 arch/powerpc/kernel/watchdog.c                |  1 +
 arch/powerpc/kvm/book3s_64_mmu_hv.c           |  1 +
 arch/powerpc/kvm/powerpc.c                    |  8 +++----
 arch/powerpc/lib/pmem.c                       |  1 +
 arch/powerpc/mm/book3s64/hash_hugetlbpage.c   |  4 ----
 arch/powerpc/mm/hugetlbpage.c                 |  2 +-
 arch/powerpc/mm/pgtable.c                     |  1 +
 arch/powerpc/platforms/pseries/eeh_pseries.c  |  6 +++---
 arch/powerpc/platforms/pseries/pci.c          | 16 +++++++-------
 arch/powerpc/platforms/pseries/ras.c          |  7 +++----
 arch/powerpc/platforms/pseries/setup.c        |  8 +++----
 19 files changed, 55 insertions(+), 52 deletions(-)

-- 
2.26.2


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2021-01-04 14:05 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-21  7:41 [PATCH 00/23] powerpc: Fix W=1 compile errors Cédric Le Goater
2020-12-21  7:42 ` [PATCH 01/23] powerpc/mm: Include __find_linux_pte() prototype Cédric Le Goater
2020-12-21  7:42 ` [PATCH 02/23] powerpc/pseries/ras: Remove unused variable 'status' Cédric Le Goater
2020-12-21  8:06   ` Christophe Leroy
2020-12-21  7:42 ` [PATCH 03/23] powerpc/pseries/eeh: Make pseries_pcibios_bus_add_device() static Cédric Le Goater
2020-12-21  8:07   ` Christophe Leroy
2020-12-21  7:42 ` [PATCH 04/23] powerpc/pseries/ras: Make init_ras_hotplug_IRQ() static Cédric Le Goater
2020-12-21  8:07   ` Christophe Leroy
2020-12-21  7:42 ` [PATCH 05/23] powerpc/pmem: Include pmem prototypes Cédric Le Goater
2020-12-21  7:42 ` [PATCH 06/23] powerpc/setup_64: Make some routines static Cédric Le Goater
2020-12-21  8:08   ` Christophe Leroy
2020-12-21  7:42 ` [PATCH 07/23] powerpc/mce: Include prototypes Cédric Le Goater
2020-12-21  7:42 ` [PATCH 08/23] powerpc/smp: Include tick_broadcast() prototype Cédric Le Goater
2020-12-21  7:42 ` [PATCH 09/23] powerpc/smp: Make debugger_ipi_callback() static Cédric Le Goater
2020-12-21  7:42 ` [PATCH 10/23] powerpc/optprobes: Remove unused routine patch_imm32_load_insns() Cédric Le Goater
2020-12-21  8:14   ` Christophe Leroy
2020-12-21  7:42 ` [PATCH 11/23] powerpc/optprobes: Make patch_imm64_load_insns() static Cédric Le Goater
2020-12-21  7:42 ` [PATCH 12/23] powerpc/mm: Declare some prototypes Cédric Le Goater
2020-12-21  7:42 ` [PATCH 13/23] powerpc/mm: Move hpte_insert_repeating() prototype Cédric Le Goater
2020-12-21  8:16   ` Christophe Leroy
2020-12-21  7:42 ` [PATCH 14/23] powerpc/mm: Declare preload_new_slb_context() prototype Cédric Le Goater
2020-12-21  7:42 ` [PATCH 15/23] powerpc/mm/hugetlb: Make pseries_alloc_bootmem_huge_page() static Cédric Le Goater
2020-12-21  7:42 ` [PATCH 16/23] powerpc/mm: Declare arch_report_meminfo() prototype Cédric Le Goater
2020-12-21  7:42 ` [PATCH 17/23] powerpc/watchdog: Declare soft_nmi_interrupt() prototype Cédric Le Goater
2020-12-21  8:48   ` Christophe Leroy
2021-01-04 14:03     ` Cédric Le Goater
2020-12-21  7:42 ` [PATCH 18/23] KVM: PPC: Make the VMX instruction emulation routines static Cédric Le Goater
2020-12-21  7:42 ` [PATCH 19/23] KVM: PPC: Book3S HV: Include prototypes Cédric Le Goater
2020-12-21  7:42 ` [PATCH 20/23] KVM: PPC: Book3S HV: Declare some prototypes Cédric Le Goater
2020-12-21  7:42 ` [PATCH 21/23] powerpc/pseries: Make IOV setup routines static Cédric Le Goater
2020-12-21  7:42 ` [PATCH 22/23] powerpc/pcidn: " Cédric Le Goater
2020-12-21  7:42 ` [PATCH 23/23] powerpc/pseries/eeh: Make pseries_send_allow_unfreeze() static Cédric Le Goater
2020-12-21  8:49   ` Christophe Leroy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).