[PATCH] [media] v4l: ti-vpe: Remove casting the return value which is a void pointer

2014-08-28 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/platform/ti-vpe/vpe.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

Re: [patch] [media] Staging: dt3155v4l: set error code on failure

2014-05-11 Thread Jingoo Han
returned. Reviewed-by: Jingoo Han Best regards, Jingoo Han > > diff --git a/drivers/staging/media/dt3155v4l/dt3155v4l.c > b/drivers/staging/media/dt3155v4l/dt3155v4l.c > index afbc2e5..178aa5b 100644 > --- a/drivers/staging/media/dt3155v4l/dt3155v4l.c > +++ b/drivers/staging

Re: [PATCH] exynos4-is: Compile runtime PM callbacks in conditionally

2014-01-07 Thread Jingoo Han
f CONFIG_PM_RUNTIME' should be used in order to fix the compile warning. Reviewed-by: Jingoo Han Best regards, Jingoo Han > --- > drivers/media/platform/exynos4-is/fimc-core.c |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/drivers/media/platfo

[PATCH 15/39] media: pci: remove DEFINE_PCI_DEVICE_TABLE macro

2013-12-02 Thread Jingoo Han
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro is not preferred. Signed-off-by: Jingoo Han --- drivers/media/pci/cx25821/cx25821-alsa.c |2 +- drivers/media/pci/cx25821/cx25821-core.c |2 +- drivers/media/pci/sta2x11/sta2x11_vip.c |2 +- 3 files changed, 3 inser

[PATCH 10/10] [media] bt8xx: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/bt8xx/bt878.c |1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/pci

[PATCH 09/10] [media] cx88: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/cx88/cx88-alsa.c |2 -- drivers/media/pci/cx88/cx88-mpeg.c |1 - drivers

[PATCH 08/10] [media] b2c2: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/b2c2/flexcop-pci.c |2 -- 1 file changed, 2 deletions(-) diff --git a/drivers

[PATCH 07/10] [media] saa7164: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/saa7164/saa7164-core.c |1 - 1 file changed, 1 deletion(-) diff --git a/drivers

[PATCH 06/10] [media] pluto2: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/pluto2/pluto2.c |2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media

[PATCH 05/10] [media] ngene: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/ngene/ngene-core.c |2 -- 1 file changed, 2 deletions(-) diff --git a/drivers

[PATCH 04/10] [media] dm1105: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/dm1105/dm1105.c |2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media

[PATCH 03/10] [media] pt1: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/pt1/pt1.c |2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media/pci

[PATCH 02/10] [media] mantis: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/pci/mantis/mantis_pci.c |2 -- 1 file changed, 2 deletions(-) diff --git a/drivers

[PATCH 01/10] [media] saa7146: remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han --- drivers/media/common/saa7146/saa7146_core.c |2 -- 1 file changed, 2 deletions(-) diff --git a

[PATCH 00/10] [media] remove unnecessary pci_set_drvdata()

2013-09-22 Thread Jingoo Han
Since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d (device-core: Ensure drvdata = NULL when no driver is bound), the driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. --- drivers/media/c

[PATCH 5/5] [media] ddbridge: Remove casting the return value which is a void pointer

2013-09-08 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/pci/ddbridge/ddbridge-core.c |2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH 4/5] [media] ngene: Remove casting the return value which is a void pointer

2013-09-08 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/pci/ngene/ngene-core.c |2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH 3/5] [media] mem2mem_testdev: Remove casting the return value which is a void pointer

2013-09-08 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/platform/mem2mem_testdev.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions

[PATCH 2/5] [media] m2m-deinterlace: Remove casting the return value which is a void pointer

2013-09-08 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/platform/m2m-deinterlace.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions

[PATCH 1/5] [media] s5p-g2d: Remove casting the return value which is a void pointer

2013-09-08 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/platform/s5p-g2d/g2d.c |2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH 1/5] [media] s5p-g2d: Remove casting the return value which is a void pointer

2013-09-08 Thread Jingoo Han
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han --- drivers/media/platform/s5p-g2d/g2d.c |2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH V6 4/4] video: exynos_dp: Use the generic PHY driver

2013-07-09 Thread Jingoo Han
Use the generic PHY API to control the DP PHY. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa --- .../devicetree/bindings/video/exynos_dp.txt | 18 +- drivers/video/exynos/exynos_dp_core.c| 16 drivers/video/exynos

[PATCH V6 2/4] phy: Add driver for Exynos DP PHY

2013-07-09 Thread Jingoo Han
Add a PHY provider driver for the Samsung Exynos SoC Display Port PHY. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa Cc: Sylwester Nawrocki Acked-by: Felipe Balbi --- .../devicetree/bindings/phy/samsung-phy.txt|8 ++ drivers/phy/Kconfig|6

[PATCH V6 1/4] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-07-09 Thread Jingoo Han
Add PHY provider node for the DP PHY. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa Acked-by: Felipe Balbi --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts

[PATCH V6 3/4] video: exynos_dp: remove non-DT support for Exynos Display Port

2013-07-09 Thread Jingoo Han
lude/video/exynos_dp.h is moved to drivers/video/exynos/exynos_dp_core.h. Thus, the 'exynos_dp.h' file is removed. Also, 'struct exynos_dp_platdata' is removed, because it is not used any more. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa --- drivers/video/exynos/Kconfig

[PATCH V6 0/4] Generic PHY driver for the Exynos SoC DP PHY

2013-07-09 Thread Jingoo Han
* Removed unnecessary header include. * Added '#ifdef CONFIG_OF' and of_match_ptr macro. This series depends on the generic PHY framework [1]. These patches refer to Sylwester Nawrocki's patches about Exynos MIPI [2]. [1] https://lkml.org/lkml/2013/6/26/259 [2] http://www.spinics.ne

[PATCH V5 4/4] video: exynos_dp: Use the generic PHY driver

2013-07-07 Thread Jingoo Han
Use the generic PHY API to control the DP PHY. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa --- .../devicetree/bindings/video/exynos_dp.txt | 18 +- drivers/video/exynos/exynos_dp_core.c| 16 drivers/video/exynos

[PATCH V5 3/4] video: exynos_dp: remove non-DT support for Exynos Display Port

2013-07-07 Thread Jingoo Han
lude/video/exynos_dp.h is moved to drivers/video/exynos/exynos_dp_core.h. Thus, the 'exynos_dp.h' file is removed. Also, 'struct exynos_dp_platdata' is removed, because it is not used any more. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa --- drivers/video/exynos/Kconfig

[PATCH V5 2/4] phy: Add driver for Exynos DP PHY

2013-07-07 Thread Jingoo Han
Add a PHY provider driver for the Samsung Exynos SoC Display Port PHY. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa Cc: Sylwester Nawrocki Acked-by: Felipe Balbi --- .../devicetree/bindings/phy/samsung-phy.txt|8 ++ drivers/phy/Kconfig|6

[PATCH V5 1/4] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-07-07 Thread Jingoo Han
Add PHY provider node for the DP PHY. Signed-off-by: Jingoo Han Reviewed-by: Tomasz Figa Acked-by: Felipe Balbi --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts

[PATCH V5 0/4] Generic PHY driver for the Exynos SoC DP PHY

2013-07-07 Thread Jingoo Han
on the generic PHY framework [1]. These patches refer to Sylwester Nawrocki's patches about Exynos MIPI [2]. [1] https://lkml.org/lkml/2013/6/26/259 [2] http://www.spinics.net/lists/linux-samsung-soc/msg20098.html Jingoo Han (4): ARM: dts: Add DP PHY node to exynos5250.dtsi phy: Add dr

Re: [PATCH V4 4/4] video: exynos_dp: Use the generic PHY driver

2013-07-07 Thread Jingoo Han
On Saturday, July 06, 2013 8:04 AM, Tomasz Figa wrote: > > Hi Jingoo, > > On Tuesday 02 of July 2013 17:42:49 Jingoo Han wrote: > > Use the generic PHY API instead of the platform callback to control > > the DP PHY. > > > > Signed-off-by: Jingoo Han > &

[PATCH V4 4/4] video: exynos_dp: Use the generic PHY driver

2013-07-02 Thread Jingoo Han
Use the generic PHY API instead of the platform callback to control the DP PHY. Signed-off-by: Jingoo Han --- .../devicetree/bindings/video/exynos_dp.txt| 23 +--- drivers/video/exynos/exynos_dp_core.c | 16 ++ drivers/video/exynos

[PATCH V4 3/4] video: exynos_dp: remove non-DT support for Exynos Display Port

2013-07-02 Thread Jingoo Han
lude/video/exynos_dp.h is moved to drivers/video/exynos/exynos_dp_core.h. Thus, the 'exynos_dp.h' file is removed. Also, 'struct exynos_dp_platdata' is removed, because it is not used any more. Signed-off-by: Jingoo Han --- drivers/video/exynos/Kconfig |2 +- drivers

[PATCH V4 2/4] phy: Add driver for Exynos DP PHY

2013-07-02 Thread Jingoo Han
Add a PHY provider driver for the Samsung Exynos SoC DP PHY. Signed-off-by: Jingoo Han Cc: Sylwester Nawrocki Acked-by: Felipe Balbi --- .../devicetree/bindings/phy/samsung-phy.txt|8 ++ drivers/phy/Kconfig|6 ++ drivers/phy/Makefile

[PATCH V4 1/4] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-07-02 Thread Jingoo Han
Add PHY provider node for the DP PHY. Signed-off-by: Jingoo Han Acked-by: Felipe Balbi --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi index 41cd625

[PATCH V4 0/4] Generic PHY driver for the Exynos SoC DP PHY

2013-07-02 Thread Jingoo Han
e. * Added '#ifdef CONFIG_OF' and of_match_ptr macro. This series depends on the generic PHY framework [1]. These patches refer to Sylwester Nawrocki's patches about Exynos MIPI [2]. [1] https://lkml.org/lkml/2013/6/26/259 [2] http://www.spinics.net/lists/linux-samsung-soc/m

Re: [PATCH V3 3/3] video: exynos_dp: Use the generic PHY driver

2013-07-02 Thread Jingoo Han
On Tuesday, July 02, 2013 4:36 AM, Sylwester Nawrocki wrote: > > Hi Jingoo, > > On 07/01/2013 07:24 AM, Jingoo Han wrote: > > Use the generic PHY API instead of the platform callback to control > > the DP PHY. The 'phy_label' field is added to the platform data

Re: [PATCH V3 2/3] phy: Add driver for Exynos DP PHY

2013-07-01 Thread Jingoo Han
On Tuesday, July 02, 2013 4:48 AM, Sylwester Nawrocki wrote: > On 07/01/2013 07:24 AM, Jingoo Han wrote: > > Add a PHY provider driver for the Samsung Exynos SoC DP PHY. > > > > Signed-off-by: Jingoo Han > > Cc: Sylwester Nawrocki > > Acked-by: Felipe Balbi >

Re: [PATCH V3 3/3] video: exynos_dp: Use the generic PHY driver

2013-07-01 Thread Jingoo Han
On Monday, July 01, 2013 3:28 PM, Kishon Vijay Abraham I wrote: > > Hi, > > On Monday 01 July 2013 10:54 AM, Jingoo Han wrote: > > Use the generic PHY API instead of the platform callback to control > > the DP PHY. The 'phy_label' field is added to the platfo

[PATCH V3 3/3] video: exynos_dp: Use the generic PHY driver

2013-06-30 Thread Jingoo Han
Use the generic PHY API instead of the platform callback to control the DP PHY. The 'phy_label' field is added to the platform data structure to allow PHY lookup on non-dt platforms. Signed-off-by: Jingoo Han Acked-by: Felipe Balbi --- .../devicetree/bindings/video/exynos_dp.txt

[PATCH V3 1/3] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-06-30 Thread Jingoo Han
Add PHY provider node for the DP PHY. Signed-off-by: Jingoo Han Acked-by: Felipe Balbi --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi index 41cd625

[PATCH V3 2/3] phy: Add driver for Exynos DP PHY

2013-06-30 Thread Jingoo Han
Add a PHY provider driver for the Samsung Exynos SoC DP PHY. Signed-off-by: Jingoo Han Cc: Sylwester Nawrocki Acked-by: Felipe Balbi --- .../devicetree/bindings/phy/samsung-phy.txt|8 ++ drivers/phy/Kconfig|5 + drivers/phy/Makefile

[PATCH V3 0/3] Generic PHY driver for the Exynos SoC DP PHY

2013-06-30 Thread Jingoo Han
* Removed unnecessary header include. * Added '#ifdef CONFIG_OF' and of_match_ptr macro. This series depends on the generic PHY framework [1]. These patches refer to Sylwester Nawrocki's patches about Exynos MIPI [2]. [1] https://lkml.org/lkml/2013/6/26/259 [2] http://www.spinics.

Re: [PATCH V2 1/3] phy: Add driver for Exynos DP PHY

2013-06-30 Thread Jingoo Han
On Saturday, June 29, 2013 6:00 PM, Kishon Vijay Abraham I wrote: > > Hi, > > On Friday 28 June 2013 12:45 PM, Jingoo Han wrote: > > Add a PHY provider driver for the Samsung Exynos SoC DP PHY. > > > > Signed-off-by: Jingoo Han > > --- > > .

Re: [PATCH 3/3] video: exynos_dp: Use the generic PHY driver

2013-06-30 Thread Jingoo Han
On Friday, June 28, 2013 6:27 PM, Kishon Vijay Abraham I wrote: > > Hi, > > On Friday 28 June 2013 11:34 AM, Jingoo Han wrote: > > On Friday, June 28, 2013 2:58 PM, Kishon Vijay Abraham I wrote: > >> > >> Hi, > >> > >> On Friday 28 June 2013

[PATCH V2 3/3] video: exynos_dp: Use the generic PHY driver

2013-06-28 Thread Jingoo Han
Use the generic PHY API instead of the platform callback to control the DP PHY. The 'phy_label' field is added to the platform data structure to allow PHY lookup on non-dt platforms. Signed-off-by: Jingoo Han --- .../devicetree/bindings/video/exynos_dp.txt| 17 --- dri

[PATCH V2 2/3] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-06-28 Thread Jingoo Han
Add PHY provider node for the DP PHY. Signed-off-by: Jingoo Han --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi index 41cd625..f7bac75 100644 --- a

[PATCH V2 1/3] phy: Add driver for Exynos DP PHY

2013-06-28 Thread Jingoo Han
Add a PHY provider driver for the Samsung Exynos SoC DP PHY. Signed-off-by: Jingoo Han --- .../phy/samsung,exynos5250-dp-video-phy.txt|7 ++ drivers/phy/Kconfig|8 ++ drivers/phy/Makefile |3 +- drivers/phy/phy

[PATCH V2 0/3] Generic PHY driver for the Exynos SoC DP PHY

2013-06-28 Thread Jingoo Han
s patches about Exynos MIPI [2]. [1] https://lkml.org/lkml/2013/6/26/259 [2] http://www.spinics.net/lists/linux-samsung-soc/msg20034.html Jingoo Han (3): phy: Add driver for Exynos DP PHY ARM: dts: Add DP PHY node to exynos5250.dtsi video: exynos_dp: Use the generic PHY driver .../phy/samsun

Re: [PATCH 2/3] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-06-27 Thread Jingoo Han
On Friday, June 28, 2013 3:07 PM, Hui Wang wrote: > On 06/28/2013 01:58 PM, Jingoo Han wrote: > > On Friday, June 28, 2013 2:42 PM, Kishon Vijay Abraham I wrote: > >> Hi, > >> > >> On Friday 28 June 2013 10:53 AM, Jingoo Han wrote: > >>> Add PHY prov

Re: [PATCH 3/3] video: exynos_dp: Use the generic PHY driver

2013-06-27 Thread Jingoo Han
On Friday, June 28, 2013 2:58 PM, Kishon Vijay Abraham I wrote: > > Hi, > > On Friday 28 June 2013 10:54 AM, Jingoo Han wrote: > > Use the generic PHY API instead of the platform callback to control > > the DP PHY. The 'phy_label' field is added to the platfo

Re: [PATCH 2/3] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-06-27 Thread Jingoo Han
On Friday, June 28, 2013 2:42 PM, Kishon Vijay Abraham I wrote: > > Hi, > > On Friday 28 June 2013 10:53 AM, Jingoo Han wrote: > > Add PHY provider node for the DP PHY. > > > > Signed-off-by: Jingoo Han > > --- > > arch/arm/boot/dts/exynos5250.dtsi |

Re: [PATCH 1/3] phy: Add driver for Exynos DP PHY

2013-06-27 Thread Jingoo Han
On Friday, June 28, 2013 2:31 PM, Kishon Vijay Abraham I wrote: > > Hi, > > On Friday 28 June 2013 10:52 AM, Jingoo Han wrote: > > Add a PHY provider driver for the Samsung Exynos SoC DP PHY. > > > > Signed-off-by: Jingoo Han > > --- > > .

[PATCH 3/3] video: exynos_dp: Use the generic PHY driver

2013-06-27 Thread Jingoo Han
Use the generic PHY API instead of the platform callback to control the DP PHY. The 'phy_label' field is added to the platform data structure to allow PHY lookup on non-dt platforms. Signed-off-by: Jingoo Han --- .../devicetree/bindings/video/exynos_dp.txt| 17 --- dri

[PATCH 2/3] ARM: dts: Add DP PHY node to exynos5250.dtsi

2013-06-27 Thread Jingoo Han
Add PHY provider node for the DP PHY. Signed-off-by: Jingoo Han --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi index 41cd625..d1d6e14 100644 --- a

[PATCH 1/3] phy: Add driver for Exynos DP PHY

2013-06-27 Thread Jingoo Han
Add a PHY provider driver for the Samsung Exynos SoC DP PHY. Signed-off-by: Jingoo Han --- .../phy/samsung,exynos5250-dp-video-phy.txt|7 ++ drivers/phy/Kconfig|8 ++ drivers/phy/Makefile |3 +- drivers/phy/phy

[PATCH 0/3] Generic PHY driver for the Exynos SoC DP PHY

2013-06-27 Thread Jingoo Han
.html Jingoo Han (3): phy: Add driver for Exynos DP PHY ARM: dts: Add DP PHY node to exynos5250.dtsi video: exynos_dp: Use the generic PHY driver .../phy/samsung,exynos5250-dp-video-phy.txt|7 ++ .../devicetree/bindings/video/exynos_dp.txt| 17 --- arch/arm/boot/dts/exyno

Re: [PATCH v2 2/8] drivers: ata: use module_platform_driver_probe()

2013-03-17 Thread Jingoo Han
Jeff Garzik > Cc: linux-...@vger.kernel.org > --- > drivers/ata/pata_at32.c | 13 + > 1 file changed, 1 insertion(+), 12 deletions(-) I already submitted the patch 2 weeks ago. http://www.spinics.net/lists/linux-ide/msg45141.html Best regards, Jingoo Han > > diff --g

Re: [PATCH v2 6/8] drivers: mfd: use module_platform_driver_probe()

2013-03-17 Thread Jingoo Han
https://patchwork.kernel.org/patch/2217301/ https://patchwork.kernel.org/patch/2217291/ Best regards, Jingoo Han > > diff --git a/drivers/mfd/davinci_voicecodec.c > b/drivers/mfd/davinci_voicecodec.c > index c0bcc87..c60ab0c 100644 > --- a/drivers/mfd/davinci_voicecodec.c >

Re: [PATCH v17 4/7] fbmon: add videomode helpers

2013-02-01 Thread Jingoo Han
vm->dmt_flags & VESA_DMT_HSYNC_HIGH) > + fbmode->sync |= FB_SYNC_HOR_HIGH_ACT; > + if (vm->dmt_flags & VESA_DMT_HSYNC_HIGH) Hi Steffen Trumtrar, Um, it seems to be a type. 'H'SYNC -> 'V'SYNC Thus, it would be changed as below:

RE: [PATCH v17 4/7] fbmon: add videomode helpers

2013-02-01 Thread Jingoo Han
vm->dmt_flags & VESA_DMT_HSYNC_HIGH) > + fbmode->sync |= FB_SYNC_HOR_HIGH_ACT; > + if (vm->dmt_flags & VESA_DMT_HSYNC_HIGH) Hi Steffen Trumtrar, Um, it seems to be a type. 'H'SYNC -> 'V'SYNC Thus, it would be changed as below:

Re: [PATCH v16 RESEND 0/7] of: add display helper

2013-01-31 Thread Jingoo Han
Hi Steffen, You can add my tested-by for this series. I have tested them for Exynos: smdk4210 board. Beat regards, Jingoo Han On Wednesday, January 23, 2013 6:12 PM, Steffen Trumtrar wrote > On Tue, Jan 22, 2013 at 03:50:48PM -0600, Rob Clark wrote: > > On Mon, Jan 21, 2013 at 5:07 AM

Re: [RFC 0/5] Generic panel framework

2012-08-16 Thread Jingoo Han
c registers that handle extra operations. In this case, custom panel driver for this eDP panel will be necessary. In my opinion, the panel framework would be helpful to solve this problem. Best regards, Jingoo Han > I've brought up the issue with Tomi Valkeinen (OMAP DSS maintainer