Re: [PATCH v2 1/2] powerpc/ps3: Change updateboltedpp panic to info

2023-01-28 Thread Geoff Levand
On 1/16/23 23:26, Christophe Leroy wrote: > Le 16/01/2023 à 21:08, Geoff Levand a écrit : >> >> As mentioned, I'd really like to keep PS3 included in ppc64_defconfig. My >> original patch that basically just ignores the call to >> mmu_hash_ops.updateboltedpp allows that, and I haven't experienced

Re: (subset) [PATCH 00/35] Documentation: correct lots of spelling errors (series 1)

2023-01-28 Thread Mark Brown
On Thu, 26 Jan 2023 22:39:30 -0800, Randy Dunlap wrote: > Correct many spelling errors in Documentation/ as reported by codespell. > > Maintainers of specific kernel subsystems are only Cc-ed on their > respective patches, not the entire series. [if all goes well] > > These patches are based on

Re: [PATCH 1/1] ASoC: imx-hdmi: Use dev_err_probe

2023-01-28 Thread Mark Brown
On Thu, 19 Jan 2023 08:34:16 +0100, Alexander Stein wrote: > This silences -517 errors and helps figuring out why the device probe > is deferred. > > Applied to broonie/sound.git for-next Thanks! [1/1] ASoC: imx-hdmi: Use dev_err_probe commit:

Re: [PATCH] ASoC: fsl-asoc-card: constify fsl_asoc_card_dai

2023-01-28 Thread Mark Brown
On Thu, 26 Jan 2023 16:24:12 +0100, Luca Ceresoli wrote: > This is never modified and can be made const. > > Applied to broonie/sound.git for-next Thanks! [1/1] ASoC: fsl-asoc-card: constify fsl_asoc_card_dai commit: 18e16350558ac42c8cc55c5df714fd28412452ad All being well this

[PATCH v2 2/2] powerpc/pci: Allow to disable filling deprecated pci-OF-bus-map

2023-01-28 Thread Pali Rohár
Creating or filling pci-OF-bus-map property in the device-tree is deprecated since May 2006 [1]. Allow to disable filling this property by unsetting config option CONFIG_PPC_PCI_OF_BUS_MAP_FILL for remaining chrp and powermac code. Disabling of pci-OF-bus-map property allows to enable new option

[PATCH v2 1/2] powerpc/pci: Enable PPC_PCI_BUS_NUM_DOMAIN_DEPENDENT by default

2023-01-28 Thread Pali Rohár
It makes sense to enable CONFIG_PPC_PCI_BUS_NUM_DOMAIN_DEPENDENT by default (when possible by dependencies) to take advantages of all 256 PCI buses on each PCI domain, like it is already on all other kernel architectures. Fixes: 566356813082 ("powerpc/pci: Add config option for using all 256 PCI

Re: [PATCH 1/2] powerpc/pci: Allow to disable filling deprecated pci-OF-bus-map

2023-01-28 Thread Pali Rohár
On Thursday 26 January 2023 21:59:43 Michael Ellerman wrote: > Pali Rohár writes: > > PING? It is more than 5 months since this patch series is there and it > > still has not received any comment. > > There was some related discussion in another thread. > > I planned to pick it up last merge

[PATCH] powerpc/kvm: Fix objtool warning for unannotated intra-function call in booke.o

2023-01-28 Thread Sathvika Vasireddy
Objtool throws the following warning: arch/powerpc/kvm/booke.o: warning: objtool: kvmppc_fill_pt_regs+0x30: unannotated intra-function call Fix this warning by allowing the function to set the value of 'nip' field using _THIS_IP_ macro, without having to use an additional assembly instruction to

[PATCH] powerpc: Fix objtool warning for unannotated intra-function call in head_85xx.o

2023-01-28 Thread Sathvika Vasireddy
Objtool throws the following warning: arch/powerpc/kernel/head_85xx.o: warning: objtool: .head.text+0x1a6c: unannotated intra-function call Fix this warning by annotating KernelSPE symbol with SYM_FUNC_START_LOCAL and SYM_FUNC_END macros. Reported-by: kernel test robot Signed-off-by: Sathvika

Re: [PATCH 3/3] mm, arch: add generic implementation of pfn_valid() for FLATMEM

2023-01-28 Thread Stafford Horne
On Wed, Jan 25, 2023 at 09:07:57PM +0200, Mike Rapoport wrote: > From: "Mike Rapoport (IBM)" > > Every architecture that supports FLATMEM memory model defines its own > version of pfn_valid() that essentially compares a pfn to max_mapnr. > > Use mips/powerpc version implemented as static inline