[linux-yocto] Trial merge of v5.15.117 v6.1.34 for linux-yocto

2023-06-14 Thread Kevin Hao
Hi Bruce, This is a trial merge of the stable kernel v5.15.117 v6.1.34 for the following branches in the linux-yocto. 05cffcf3f2df v5.15/standard/sdkv5.10/axxia 4f5873a6bf1d v5.15/standard/preempt-rt/sdkv5.10/axxia e16d2d7c6031 v5.15/standard/base

[linux-yocto][linux-yocto-5.15 axxia standard/preempt-rt][PATCH 1/1] arm: axxia: ddr_retention: change the size of stack_var from 1024 to 512

2023-06-14 Thread LiweiSong via lists.yoctoproject.org
From: Quanyang Wang If the size of array stack_var is 1024, it will trigger the build warning as below: arch/arm/mach-axxia/ddr_retention.c:220:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=] 220 | } | ^ Since substracting 1K for 4 times from

Re: [linux-yocto] [v6.1 PATCH] mmc: sdhci-esdhc-imx: Drop the unused usdhc_s32g2_data

2023-06-14 Thread Bruce Ashfield
In message: [v6.1 PATCH] mmc: sdhci-esdhc-imx: Drop the unused usdhc_s32g2_data on 15/06/2023 Kevin Hao wrote: > From: Kevin Hao > > This is not used by anyone since it was introduced in commit > 7062449f7189 ("mmc: sdhci-esdhc-imx: Add S32CC support"), so drop it. > > Signed-off-by: Kevin Hao

Re: [linux-yocto][linux-yocto v6.1 standard intel-socfpga branch][PATCH] intel: fcs: remove unused variable total_out_size and output_file_pointer

2023-06-14 Thread Bruce Ashfield
In message: [linux-yocto][linux-yocto v6.1 standard intel-socfpga branch][PATCH] intel: fcs: remove unused variable total_out_size and output_file_pointer on 15/06/2023 Liwei Song wrote: > total_out_size and output_file_pointer are not used anymore, delete them > to avoid build error when

Re: [linux-yocto] [v6.1 PATCH] irqchip: gpcv2: Wrap the res variable with #ifdef

2023-06-14 Thread Bruce Ashfield
In message: [v6.1 PATCH] irqchip: gpcv2: Wrap the res variable with #ifdef on 14/06/2023 Kevin Hao wrote: > From: Kevin Hao > > This variable is only used on arm64, but this driver is also available > to arm. So wrap it with #ifdef to fix the build warning on arm. > > Signed-off-by: Kevin Hao

Re: [linux-yocto] [PATCH v5.15 0/4] Fix several build warnings on nxp-soc branches

2023-06-14 Thread Bruce Ashfield
In message: [PATCH v5.15 0/4] Fix several build warnings on nxp-soc branches on 14/06/2023 Kevin Hao wrote: > From: Kevin Hao > > Hi Bruce, > > This patch series fixes several build warnings on nxp-soc branches. > Please help me merge these into the following two branches: >

Re: [linux-yocto] [yocto-kernel-cache][yocto-6.1][PATCH] bsp: xilinx-zynqmp: add XILINX_INTC to support "xlnx,xps-intc-1.00.a"

2023-06-14 Thread Bruce Ashfield
In message: [yocto-kernel-cache][yocto-6.1][PATCH] bsp: xilinx-zynqmp: add XILINX_INTC to support "xlnx,xps-intc-1.00.a" on 14/06/2023 quanyang.w...@windriver.com wrote: > From: Quanyang Wang > > We need to enable CONFIG_XILINX_INTC in order to verify Xilinx FPGA > related interrupt controller

Re: [linux-yocto] [std/rt kernel v6.1]: nxp-s32g: serial: linflexuart: fix STR failure issue

2023-06-14 Thread Bruce Ashfield
In message: [linux-yocto] [std/rt kernel v6.1]: nxp-s32g: serial: linflexuart: fix STR failure issue on 14/06/2023 Zhantao Tang wrote: > Hi Bruce, > > The following two patches are to fix STR failure issue. > Would you please help to merge them into the following: >

[linux-yocto] [v6.1 PATCH] mmc: sdhci-esdhc-imx: Drop the unused usdhc_s32g2_data

2023-06-14 Thread Kevin Hao
From: Kevin Hao This is not used by anyone since it was introduced in commit 7062449f7189 ("mmc: sdhci-esdhc-imx: Add S32CC support"), so drop it. Signed-off-by: Kevin Hao --- Hi Bruce, Please help me merge this into the following two branches: v6.1/standard/nxp-sdk-5.15/nxp-s32g

[linux-yocto][linux-yocto v6.1 standard intel-socfpga branch][PATCH] intel: fcs: remove unused variable total_out_size and output_file_pointer

2023-06-14 Thread LiweiSong via lists.yoctoproject.org
total_out_size and output_file_pointer are not used anymore, delete them to avoid build error when enabled [-Werror=unused-variable]: drivers/crypto/intel_fcs_main.c: In function 'fcs_ioctl': | drivers/crypto/intel_fcs_main.c:403:45: error: unused variable 'total_out_size'

[linux-yocto] [v6.1 PATCH] irqchip: gpcv2: Wrap the res variable with #ifdef

2023-06-14 Thread Kevin Hao
From: Kevin Hao This variable is only used on arm64, but this driver is also available to arm. So wrap it with #ifdef to fix the build warning on arm. Signed-off-by: Kevin Hao --- Hi Bruce, Please help me merge this into the following two branches:

[linux-yocto] [PATCH 4/4] video: fb: mxc: Drop the senseless check

2023-06-14 Thread Kevin Hao
From: Kevin Hao The fb_info::cmap is a struct instead of pointer, so it makes no sense to check it before the color map deallocation. Signed-off-by: Kevin Hao --- drivers/video/fbdev/mxc/mxc_ipuv3_fb.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git

[linux-yocto] [PATCH 3/4] arm64: imx8: vpc: Wrap the hantroenc_ioctl32() with #ifdef

2023-06-14 Thread Kevin Hao
From: Kevin Hao This function is only used when CONFIG_COMPAT is enabled. So wrap it with #ifdef to fix the below build warning. drivers/mxc/hantro_vc8000e/hx280enc_vc8000e.c:702:13: warning: ‘hantroenc_ioctl32’ defined but not used [-Wunused-function] 702 | static long

[linux-yocto] [PATCH 2/4] net: tsn: Drop the senseless codes

2023-06-14 Thread Kevin Hao
From: Kevin Hao The 'gcl' is a pointer, so 'gcl + i' always evaluate as 'true'. And the memory pointed by 'gcl' is allocated based on the sgiadmin.admin.control_list_length, so it makes no sense to recheck the out of bounds access. Drop these codes to fix the following build warning:

[linux-yocto] [PATCH 1/4] ASoC: fsl_esai: Drop the unused variable in fsl_esai_mix_buffer_from_fe_{tx,rx}()

2023-06-14 Thread Kevin Hao
From: Kevin Hao Due to the change in commit f7a712001db6 ("ASoC: fsl_esai: Replace the dpcm_lock with FE stream lock"), the variable 'flags' is not needed anymore. So drop it. Signed-off-by: Kevin Hao --- sound/soc/fsl/fsl_esai_mix.c | 2 -- 1 file changed, 2 deletions(-) diff --git

[linux-yocto] [PATCH v5.15 0/4] Fix several build warnings on nxp-soc branches

2023-06-14 Thread Kevin Hao
From: Kevin Hao Hi Bruce, This patch series fixes several build warnings on nxp-soc branches. Please help me merge these into the following two branches: v5.15/standard/nxp-sdk-5.15/nxp-soc v5.15/standard/preempt-rt/nxp-sdk-5.15/nxp-soc Kevin Hao (4): ASoC: fsl_esai: Drop the unused