[linux-yocto] [linux-yocto v5.10/standard/nxp-sdk-5.4/nxp-s32g2xx]: patches to fix build warnings

2021-04-14 Thread Zhantao Tang
Hi Bruce, There are two patches to fix build warnings for pci and hse driver. Would you please help to merge these patches into linux-ycoto kernel, v5.10, branch is v5.10/standard/nxp-sdk-5.4/nxp-s32g2xx? Thanks, Zhantao -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this

[linux-yocto] [PATCH 1/2] drivers: crypto: hse: fix unused variable build warning

2021-04-14 Thread Zhantao Tang
The err variable is used when CONFIG_CRYPTO_DEV_NXP_HSE_UIO disabled, so add check line to fix build warning. Signed-off-by: Zhantao Tang --- drivers/crypto/hse/hse-core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/crypto/hse/hse-core.c b/drivers/crypto/hse/hse-core.c index

[linux-yocto] [PATCH 2/2] drivers: pci: s32gen1: fix build warning of unused function

2021-04-14 Thread Zhantao Tang
The function s32gen1_pcie_config_irq() is used when CONFIG_PCI_S32GEN1_EP_MSI or CONFIG_PCI_DW_DMA enabled, so add check line to fix the build warning. Signed-off-by: Zhantao Tang --- drivers/pci/controller/dwc/pci-s32gen1.c | 2 ++ 1 file changed, 2 insertions(+) diff --git