Re: [PATCH] staging: imx-drm: Fix modular build of DRM_IMX_IPUV3

2013-11-19 Thread Greg KH
On Tue, Nov 19, 2013 at 08:56:59PM -0500, Josh Boyer wrote: > On Mon, Nov 18, 2013 at 10:03:10AM +0100, Sascha Hauer wrote: > > On Tue, Nov 12, 2013 at 12:15:45PM -0500, Josh Boyer wrote: > > > commit b8d181e408af (staging: drm/imx: add drm plane support) added a file > > > to the make target for D

Re: [PATCH] staging: imx-drm: Fix modular build of DRM_IMX_IPUV3

2013-11-19 Thread Josh Boyer
On Mon, Nov 18, 2013 at 10:03:10AM +0100, Sascha Hauer wrote: > On Tue, Nov 12, 2013 at 12:15:45PM -0500, Josh Boyer wrote: > > commit b8d181e408af (staging: drm/imx: add drm plane support) added a file > > to the make target for DRM_IMX_IPUV3 but didn't adjust the objs required > > to actually bui

Re: [PATCH 21/31] staging: nvec: use reset framework

2013-11-19 Thread Greg Kroah-Hartman
On Fri, Nov 15, 2013 at 01:54:16PM -0700, Stephen Warren wrote: > From: Stephen Warren > > Tegra's clock driver now provides an implementation of the common > reset API (include/linux/reset.h). Use this instead of the old Tegra- > specific API; that will soon be removed. > > Cc: tred...@nvidia.c

[PATCH 0/2] fix sd power bug and modify phase-searching method

2013-11-19 Thread micky_ching
From: Micky Ching If the driver removed while sd card still in the slot, the card power will not power down correctly, if we insert the driver module again, UHS card will not switch to UHS mode. This bug is fix in this patch. We use another phase search method for tuning, which looks more simple

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

2013-11-19 Thread micky_ching
From: Micky Ching The new phase searching method is more concise and easier to understand. Signed-off-by: Micky Ching --- drivers/mmc/host/rtsx_pci_sdmmc.c | 108 +++-- 1 file changed, 30 insertions(+), 78 deletions(-) diff --git a/drivers/mmc/host/rtsx_pci_sd

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

2013-11-19 Thread micky_ching
From: Micky Ching 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: Micky Ching --- drivers/mmc