Message ID | 449a9f85d07aca65f607944c4bdab850760c9445.1740996436.git.bertrand.marquis@arm.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | xen/arm: Fix platforms Kconfig indent | expand |
On 03/03/2025 11:08, Bertrand Marquis wrote: > > > Fix platforms/Kconfig help indent to respect the standard (tab + 2 > spaces). > > Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com> Reviewed-by: Michal Orzel <michal.orzel@amd.com> Do you plan to fix also arch/arm/Kconfig.debug? You could squeeze it in this patch as well :) ~Michal
Hi Michal, > On 3 Mar 2025, at 11:13, Orzel, Michal <Michal.Orzel@amd.com> wrote: > > > > On 03/03/2025 11:08, Bertrand Marquis wrote: >> >> >> Fix platforms/Kconfig help indent to respect the standard (tab + 2 >> spaces). >> >> Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com> > Reviewed-by: Michal Orzel <michal.orzel@amd.com> > > Do you plan to fix also arch/arm/Kconfig.debug? You could squeeze it in this > patch as well :) This one was in my stack of stuff to push after the release. Happy to also fix Kconfig.debug to. I will push a v2 with Kconfig.debug Cheers Bertrand > > ~Michal >
On 03/03/2025 11:15, Bertrand Marquis wrote: > > > Hi Michal, > >> On 3 Mar 2025, at 11:13, Orzel, Michal <Michal.Orzel@amd.com> wrote: >> >> >> >> On 03/03/2025 11:08, Bertrand Marquis wrote: >>> >>> >>> Fix platforms/Kconfig help indent to respect the standard (tab + 2 >>> spaces). >>> >>> Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com> >> Reviewed-by: Michal Orzel <michal.orzel@amd.com> >> >> Do you plan to fix also arch/arm/Kconfig.debug? You could squeeze it in this >> patch as well :) > > This one was in my stack of stuff to push after the release. > Happy to also fix Kconfig.debug to. > I will push a v2 with Kconfig.debug Thank you very much. Feel free to retain the Rb tag. ~Michal
diff --git a/xen/arch/arm/platforms/Kconfig b/xen/arch/arm/platforms/Kconfig index 6dbf6ec87b1d..b938de329762 100644 --- a/xen/arch/arm/platforms/Kconfig +++ b/xen/arch/arm/platforms/Kconfig @@ -2,15 +2,15 @@ choice prompt "Platform Support" if MMU default ALL_PLAT help - Choose which hardware platform to enable in Xen. + Choose which hardware platform to enable in Xen. - If unsure, choose ALL_PLAT. + If unsure, choose ALL_PLAT. config ALL_PLAT bool "All Platforms" help - Enable support for all available hardware platforms. It doesn't - automatically select any of the related drivers. + Enable support for all available hardware platforms. It doesn't + automatically select any of the related drivers. config QEMU bool "QEMU aarch virt machine support" @@ -18,8 +18,8 @@ config QEMU select GICV3 select HAS_PL011 help - Enable all the required drivers for QEMU aarch64 virt emulated - machine. + Enable all the required drivers for QEMU aarch64 virt emulated + machine. config RCAR3 bool "Renesas RCar3 support" @@ -27,7 +27,7 @@ config RCAR3 select HAS_SCIF select IPMMU_VMSA help - Enable all the required drivers for Renesas RCar3 + Enable all the required drivers for Renesas RCar3 config MPSOC bool "Xilinx Ultrascale+ MPSoC support" @@ -35,7 +35,7 @@ config MPSOC select HAS_CADENCE_UART select ARM_SMMU help - Enable all the required drivers for Xilinx Ultrascale+ MPSoC + Enable all the required drivers for Xilinx Ultrascale+ MPSoC config S32G3 bool "NXP S32G3 Processors support" @@ -43,12 +43,12 @@ config S32G3 select HAS_LINFLEX select SCMI_SMC help - Enable all the required drivers for NXP S32G3 Processors Family + Enable all the required drivers for NXP S32G3 Processors Family config NO_PLAT bool "No Platforms" help - Do not enable specific support for any platform. + Do not enable specific support for any platform. endchoice
Fix platforms/Kconfig help indent to respect the standard (tab + 2 spaces). Signed-off-by: Bertrand Marquis <bertrand.marquis@arm.com> --- xen/arch/arm/platforms/Kconfig | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-)