Re: [PATCH] Staging: TIDSPBRIDGE: Remove UUID helper

2013-12-02 Thread Joe Perches
On Sun, 2013-12-01 at 19:07 +0200, Ivaylo DImitrov wrote: From: Ivaylo Dimitrov freemangor...@abv.bg Custom uuid helper function is needed only in rmgr/dbdcd.c and doesn't need to be exported. It can also be made way simpler by using sscanf. [] diff --git

[PATCH] Staging: usbip: vhci_hcd.c: removed a space

2013-12-02 Thread Aldo Iljazi
Line 921: Removed the space before the semicolon. Signed-off-by: Aldo Iljazi m...@aldo.io --- drivers/staging/usbip/vhci_hcd.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/usbip/vhci_hcd.c b/drivers/staging/usbip/vhci_hcd.c index e810ad5..fa3e0b2 100644

[PATCH 2/3] imx-drm: ipuv3-crtc: Make DISP_CLK polarity configurable

2013-12-02 Thread Marek Vasut
This patch makes the LCD display clock polarity configurable via DT so in case board needs different DISP_CLK clock polarity, it can use the 'pixelclk-active' DT prop to do such adjustment. Signed-off-by: Marek Vasut ma...@denx.de Cc: Dave Airlie airl...@gmail.com Cc: Greg Kroah-Hartman

[PATCH 3/3] ARM: dts: imx53: Switch DISP_CLK polarity on M53EVK

2013-12-02 Thread Marek Vasut
Change the DISP_CLK line polarity on M53EVK to work correctly after the following commit: commit f0ac9bebf19001f38afbb93e2dc719a15dfb75e5 Author: Fabio Estevam fabio.este...@freescale.com Date: Tue Oct 29 19:42:22 2013 -0200 imx-drm: ipuv3-crtc: Invert IPU DI0 clock polarity

[PATCH 1/3] drm: Add LCD display clock polarity flags

2013-12-02 Thread Marek Vasut
Add DRM flags for the LCD display clock polarity so the pixelclk-active DT property can be properly handled by drivers using the DRM API. Signed-off-by: Marek Vasut ma...@denx.de Cc: Dave Airlie airl...@gmail.com Cc: Greg Kroah-Hartman gre...@linuxfoundation.org Cc: Philipp Zabel

Re: [PATCH 1/3] drm: Add LCD display clock polarity flags

2013-12-02 Thread Russell King - ARM Linux
On Mon, Dec 02, 2013 at 04:39:26PM +0100, Marek Vasut wrote: Add DRM flags for the LCD display clock polarity so the pixelclk-active DT property can be properly handled by drivers using the DRM API. I still say that not even this should be part of the DRM mode API to userspace. The hint that

[PATCH] Staging: TIDSPBRIDGE: Use vm_iomap_memory for mmap-ing instead of remap_pfn_range

2013-12-02 Thread Ivaylo DImitrov
From: Ivaylo Dimitrov freemangor...@abv.bg This fixes the following bug: Bug Report source file: drivers/staging/tidspbridge/rmgr/drv_interface.c issue : mapping of physical memory without address range checks 259 static int bridge_mmap(struct file *filp, struct vm_area_struct

Re: [PATCH 1/3] drm: Add LCD display clock polarity flags

2013-12-02 Thread Rob Clark
On Mon, Dec 2, 2013 at 3:01 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Dec 02, 2013 at 04:39:26PM +0100, Marek Vasut wrote: Add DRM flags for the LCD display clock polarity so the pixelclk-active DT property can be properly handled by drivers using the DRM API. I still

[PATCH 34/39] vme: 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/vme/boards/vme_vmivme7805.c |2 +- drivers/vme/bridges/vme_ca91cx42.c |2 +- drivers/vme/bridges/vme_tsi148.c|2 +- 3 files changed, 3

[PATCH 28/39] staging: 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/staging/comedi/drivers/8255_pci.c |2 +- drivers/staging/comedi/drivers/addi_apci_035.c|2 +-

[PATCH v3 2/2] mmc: rtsx: modify phase searching method for tuning

2013-12-02 Thread micky_ching
From: Micky Ching micky_ch...@realsil.com.cn The new phase searching method is more concise and easier to understand. Signed-off-by: Micky Ching micky_ch...@realsil.com.cn --- drivers/mmc/host/rtsx_pci_sdmmc.c | 112 +++-- include/linux/mfd/rtsx_pci.h |

[PATCH v3 1/2] mmc: rtsx: fix card poweroff bug

2013-12-02 Thread micky_ching
From: Micky Ching micky_ch...@realsil.com.cn If the host driver removed while card in the slot, the host will not power off card power correctly. This bug is produced because host eject flag set before the last mmc_set_ios callback, we should set the eject flag after power off. Signed-off-by: