Re: [PATCH v2] mmc: dw_mmc: Add second capability field

2011-12-24 Thread Chris Ball
Hi, On Thu, Dec 22 2011, Seungwon Jeon wrote: > This patch adds caps2 filed for second capability in dw_mmc. > It corresponds with MMC_CAPS2_XXX. And this patch removes the > unnecessary condition statement for assigning caps. > > Signed-off-by: Seungwon Jeon > --- > drivers/mmc/host/dw_mmc.c |

Re: [PATCH] mmc: core: Fix voltage select in DDR mode

2011-12-24 Thread Chris Ball
Hi Girish, On Thu, Dec 15 2011, Girish K S wrote: > This patch fixes the wrong comparison before setting the interface > voltage in DDR mode. > > The assignment to the variable ddr before comaprison is either > ddr = MMC_1_2V_DDR_MODE; or ddr == MMC_1_8V_DDR_MODE. But the comparison > is done wth

Re: [PATCH RESEND] mmc: dw_mmc: Support predefined mutiple block transfers

2011-12-24 Thread Chris Ball
Hi, On Thu, Dec 22 2011, Will Newton wrote: > On Thu, Dec 22, 2011 at 9:01 AM, Seungwon Jeon wrote: >> This patch adds the support for predefined multiple block r/w. >> dw_mmc can support MMC_CAP_CMD23 capability. >> >> Signed-off-by: Seungwon Jeon >> --- >>  drivers/mmc/host/dw_mmc.c |   34 +++

Re: [PATCH] mmc: dw_mmc: Add more capabilities field

2011-12-24 Thread Chris Ball
Hi, On Fri, Dec 09 2011, Seungwon Jeon wrote: > This patch adds another capabilities field for MMC_CAPS2_XXX. > > Signed-off-by: Seungwon Jeon > --- > drivers/mmc/host/dw_mmc.c |6 ++ > include/linux/mmc/dw_mmc.h |1 + > 2 files changed, 7 insertions(+), 0 deletions(-) > > diff --gi