[linux-yocto] [linux-yocto v5.15 v2] tgpio: Fix compilation errors for PSE TGPIO

2022-11-21 Thread Kevin Hao
From: Hao Li commit f02a736e8a95690894cac88cda7dc3d8f22babb6 from https://github.com/intel/linux-intel-lts.git Signed-off-by: Hao Li Signed-off-by: Kevin Hao --- Hi Bruce, Please help me merge this into the following two branches: v5.15/standard/preempt-rt/x86 v5.15/standard/x86 v2:

Re: [linux-yocto] [linux-yocto 0/4] Fix the build errors for intel-ehl-gpio driver

2022-11-21 Thread Kevin Hao
On Mon, Nov 21, 2022 at 11:05:36AM -0500, Bruce Ashfield wrote: > On Mon, Nov 21, 2022 at 8:09 AM Kevin Hao wrote: > > > > From: Kevin Hao > > > > Hi Bruce, > > > > This patch series fixes serveal build errors when intel-ehl-gpio driver > > is enabled. Please help merge them into the following

Re: [linux-yocto] [linux-yocto 0/4] Fix the build errors for intel-ehl-gpio driver

2022-11-21 Thread Bruce Ashfield
On Mon, Nov 21, 2022 at 8:09 AM Kevin Hao wrote: > > From: Kevin Hao > > Hi Bruce, > > This patch series fixes serveal build errors when intel-ehl-gpio driver > is enabled. Please help merge them into the following two branches: > v5.15/standard/preempt-rt/x86 > v5.15/standard/x86 Thanks

[linux-yocto] [PATCH 4/4] mfd: intel-ehl-gpio: Fix the int conversion error

2022-11-21 Thread Kevin Hao
From: Kevin Hao Fix the following int conversion errors introduced by commit f6c5e7b6e801 ("mfd: intel-ehl-gpio: Introduce MFD framework to PSE GPIO/TGPIO"). include/linux/stddef.h:8:14: error: initialization of ‘long unsigned int’ from ‘void *’ makes integer from pointer without a cast

[linux-yocto] [PATCH 3/4] mfd: intel-ehl-gpio: Drop the unused variables

2022-11-21 Thread Kevin Hao
From: Kevin Hao Fix the unused variable errors introduced by commit f6c5e7b6e801 ("mfd: intel-ehl-gpio: Introduce MFD framework to PSE GPIO/TGPIO"). drivers/gpio/gpio-ehl-pse-plat.c: In function ‘ehl_pse_gpio_probe’: drivers/gpio/gpio-ehl-pse-plat.c:366:23: error: unused variable ‘base’

[linux-yocto] [PATCH 2/4] gpio: intel-ehl-gpio: Fix the wrong return type in ehl_pse_gpio_probe()

2022-11-21 Thread Kevin Hao
From: Kevin Hao The commit f6c5e7b6e801 ("mfd: intel-ehl-gpio: Introduce MFD framework to PSE GPIO/TGPIO") introduced the following wrong return type errors: drivers/gpio/gpio-ehl-pse-plat.c: In function ‘ehl_pse_gpio_probe’: include/linux/stddef.h:8:14: error: returning ‘void *’ from a

[linux-yocto] [PATCH 1/4] gpio: intel-ehl-gpio: Fix the declaration after statement error

2022-11-21 Thread Kevin Hao
From: Kevin Hao The commit f6c5e7b6e801 ("mfd: intel-ehl-gpio: Introduce MFD framework to PSE GPIO/TGPIO") introduced the following build error: driverr/gpio/gpio-ehl-pse-plat.c: In function ‘ehl_pse_gpio_get_direction’: drivers/gpio/gpio-ehl-pse-plat.c:175:9: error: ISO C90 forbids mixed

[linux-yocto] [linux-yocto 0/4] Fix the build errors for intel-ehl-gpio driver

2022-11-21 Thread Kevin Hao
From: Kevin Hao Hi Bruce, This patch series fixes serveal build errors when intel-ehl-gpio driver is enabled. Please help merge them into the following two branches: v5.15/standard/preempt-rt/x86 v5.15/standard/x86 Kevin Hao (4): gpio: intel-ehl-gpio: Fix the declaration after statement