[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 jg1@samsung.com --- drivers/media/platform/ti-vpe/vpe.c | 3 +-- 1 file changed, 1 insertion(+), 2

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

2014-05-11 Thread Jingoo Han
. Reviewed-by: Jingoo Han jg1@samsung.com 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/media

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

2014-01-07 Thread Jingoo Han
in order to fix the compile warning. Reviewed-by: Jingoo Han jg1@samsung.com 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/platform/exynos4-is/fimc-core.c b/drivers

[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 jg1@samsung.com --- 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

[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. ---

[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 jg1@samsung.com --- drivers/media/common/saa7146/saa7146_core.c |2 -- 1 file changed, 2 deletions

[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 jg1@samsung.com --- drivers/media/pci/mantis/mantis_pci.c |2 -- 1 file changed, 2 deletions

[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 jg1@samsung.com --- drivers/media/pci/pt1/pt1.c |2 -- 1 file changed, 2 deletions(-) diff --git

[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 jg1@samsung.com --- drivers/media/pci/dm1105/dm1105.c |2 -- 1 file changed, 2 deletions(-) diff

[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 jg1@samsung.com --- drivers/media/pci/ngene/ngene-core.c |2 -- 1 file changed, 2 deletions(-) diff

[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 jg1@samsung.com --- drivers/media/pci/pluto2/pluto2.c |2 -- 1 file changed, 2 deletions(-) diff

[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 jg1@samsung.com --- drivers/media/pci/saa7164/saa7164-core.c |1 - 1 file changed, 1 deletion

[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 jg1@samsung.com --- drivers/media/pci/b2c2/flexcop-pci.c |2 -- 1 file changed, 2 deletions(-) diff

[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 jg1@samsung.com --- drivers/media/pci/cx88/cx88-alsa.c |2 -- drivers/media/pci/cx88/cx88-mpeg.c

[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 jg1@samsung.com --- drivers/media/pci/bt8xx/bt878.c |1 - 1 file changed, 1 deletion(-) diff --git

[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 jg1@samsung.com --- drivers/media/platform/s5p-g2d/g2d.c |2 +- 1 file changed, 1 insertion

[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 jg1@samsung.com --- drivers/media/platform/s5p-g2d/g2d.c |2 +- 1 file changed, 1 insertion

[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 jg1@samsung.com --- drivers/media/platform/m2m-deinterlace.c |3 +-- 1 file changed, 1

[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 jg1@samsung.com --- drivers/media/platform/mem2mem_testdev.c |3 +-- 1 file changed, 1

[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 jg1@samsung.com --- drivers/media/pci/ngene/ngene-core.c |2 +- 1 file changed, 1 insertion

[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 jg1@samsung.com --- drivers/media/pci/ddbridge/ddbridge-core.c |2 +- 1 file changed, 1

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

2013-07-09 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 driver for Exynos DP

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

2013-07-09 Thread Jingoo Han
/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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com --- drivers/video/exynos

[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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm

[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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com Cc: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- .../devicetree/bindings/phy/samsung-phy.txt

[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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com --- .../devicetree/bindings/video/exynos_dp.txt | 18 +- drivers/video/exynos/exynos_dp_core.c| 16

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 jg1@samsung.com --- .../devicetree/bindings/video

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

2013-07-07 Thread Jingoo Han
/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 driver for Exynos DP PHY video: exynos_dp: remove non-DT support for Exynos Display Port video: exynos_dp: Use the generic PHY driver

[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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/arm

[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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com Cc: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- .../devicetree/bindings/phy/samsung-phy.txt

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

2013-07-07 Thread Jingoo Han
/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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com --- drivers/video/exynos

[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 jg1@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com --- .../devicetree/bindings/video/exynos_dp.txt | 18 +- drivers/video/exynos/exynos_dp_core.c| 16

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

2013-07-02 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 Hanjg1@samsung.com Cc: Sylwester Nawrockis.nawro...@samsung.com Acked-by: Felipe Balbiba

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 structure to allow PHY lookup on non-dt

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

2013-07-02 Thread Jingoo Han
[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 driver for Exynos DP PHY video

[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 jg1@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- 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 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 jg1@samsung.com Cc: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- .../devicetree/bindings/phy/samsung-phy.txt|8 ++ drivers/phy/Kconfig

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

2013-07-02 Thread Jingoo Han
/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 jg1@samsung.com --- drivers/video/exynos/Kconfig |2 +- drivers/video/exynos

[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 jg1@samsung.com --- .../devicetree/bindings/video/exynos_dp.txt| 23 +--- drivers/video/exynos/exynos_dp_core.c | 16 ++ drivers

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 platform data structure to allow PHY lookup

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 10:54 AM, Jingoo Han wrote: Use the generic PHY API instead

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 jg1@samsung.com --- .../phy/samsung,exynos5250-dp-video-phy.txt

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

2013-06-30 Thread Jingoo Han
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/msg20098.html Jingoo Han (3): ARM: dts: Add DP PHY node to exynos5250

[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 jg1@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- 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 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 jg1@samsung.com Cc: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- .../devicetree/bindings/phy/samsung-phy.txt|8 ++ drivers/phy/Kconfig

[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 jg1@samsung.com Acked-by: Felipe Balbi ba...@ti.com --- .../devicetree/bindings

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

2013-06-28 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 platform data structure to allow PHY lookup

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

2013-06-28 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 provider node for the DP PHY. Signed-off-by: Jingoo Han jg1

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

2013-06-28 Thread Jingoo Han
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/samsung,exynos5250-dp

[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 jg1@samsung.com --- .../phy/samsung,exynos5250-dp-video-phy.txt|7 ++ drivers/phy/Kconfig|8 ++ drivers/phy/Makefile |3

[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 jg1@samsung.com --- 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 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 jg1@samsung.com --- .../devicetree/bindings/video/exynos_dp.txt| 17

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

2013-06-27 Thread Jingoo Han
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/exynos5250

[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 jg1@samsung.com --- .../phy/samsung,exynos5250-dp-video-phy.txt|7 ++ drivers/phy/Kconfig|8 ++ drivers/phy/Makefile |3

[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 jg1@samsung.com --- 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 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 jg1@samsung.com --- .../devicetree/bindings/video/exynos_dp.txt| 17

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 jg1@samsung.com --- .../phy/samsung,exynos5250-dp-video-phy.txt

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 jg1@samsung.com --- arch/arm/boot/dts/exynos5250.dtsi | 13 - 1 file changed

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

2013-03-17 Thread Jingoo Han
already submitted the patch 2 weeks ago. 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

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

2013-03-17 Thread Jingoo Han
Cc: Jeff Garzik jgar...@pobox.com 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

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

2013-02-01 Thread Jingoo Han
regards, Jingoo Han + fbmode-sync |= FB_SYNC_VERT_HIGH_ACT; + if (vm-data_flags DISPLAY_FLAGS_INTERLACED) + fbmode-vmode |= FB_VMODE_INTERLACED; + if (vm-data_flags DISPLAY_FLAGS_DOUBLESCAN) + fbmode-vmode |= FB_VMODE_DOUBLE; + fbmode-flag = 0

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

2013-02-01 Thread Jingoo Han
regards, Jingoo Han + fbmode-sync |= FB_SYNC_VERT_HIGH_ACT; + if (vm-data_flags DISPLAY_FLAGS_INTERLACED) + fbmode-vmode |= FB_VMODE_INTERLACED; + if (vm-data_flags DISPLAY_FLAGS_DOUBLESCAN) + fbmode-vmode |= FB_VMODE_DOUBLE; + fbmode-flag = 0

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, Steffen

Re: [RFC 0/5] Generic panel framework

2012-08-16 Thread Jingoo Han
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) and Marcus Lorentzon (working on panel support for ST/Linaro), and we agreed that a generic panel framework for display devices