Re: [PATCH RESEND V4] mmc: core: HS200 mode support for eMMC 4.5

2011-11-08 Thread Sahitya Tummala
Hi Girish, On 10/26/2011 10:29 AM, Girish K S wrote: This patch adds the support of the HS200 bus speed for eMMC 4.5 devices. The eMMC 4.5 devices have support for 200MHz bus speed.The mmc core and host modules have been touched to add support for this module. It is necessary to know the card

Re: [PATCH V9] mmc: core: Add Power Off Notify Feature eMMC 4.5

2011-11-08 Thread Sahitya Tummala
Hi Girish, On 10/18/2011 10:35 AM, Girish K S wrote: This patch adds the support for power off notify feature, available in eMMC 4.5 devices. If the the host has support for this feature, then the mmc core will notify it to the device by setting the POWER_OFF_NOTIFICATION byte in the extended

Re: [PATCH 5/6] mmc: Add OF bindings support for mmc host controller capabilities

2011-11-08 Thread Thomas Abraham
Hi Grant, On 8 November 2011 02:45, Grant Likely grant.lik...@secretlab.ca wrote: On Mon, Nov 07, 2011 at 07:51:26PM +0530, Thomas Abraham wrote: On 5 November 2011 01:27, Olof Johansson o...@lixom.net wrote: On Thu, Nov 03, 2011 at 02:06:02AM +0530, Thomas Abraham wrote: Device nodes

Re: [PATCH 6/6] mmc: sdhci-s3c: Add device tree support

2011-11-08 Thread Thomas Abraham
Hi Grant, On 8 November 2011 02:47, Grant Likely grant.lik...@secretlab.ca wrote: On Thu, Nov 03, 2011 at 02:06:03AM +0530, Thomas Abraham wrote: Add device tree based discovery support for Samsung's sdhci controller Cc: Ben Dooks ben-li...@fluff.org Signed-off-by: Thomas Abraham

Re: [PATCH] ARM: S3C6410: Use device names for both I2C clocks

2011-11-08 Thread Thomas Abraham
On 8 November 2011 21:39, Mark Brown broo...@opensource.wolfsonmicro.com wrote: When the S3C64xx CPUs were converted to clkdev mappings were added for the I2C controllers on them. On S3C6410 a device name is specified for I2C controller 1 but not for controller 0 which makes the code less

Re: [PATCH] ARM: S3C6410: Use device names for both I2C clocks

2011-11-08 Thread Mark Brown
On Tue, Nov 08, 2011 at 09:57:56PM +0530, Thomas Abraham wrote: On 8 November 2011 21:39, Mark Brown +#ifdef CONFIG_S3C_DEV_I2C1 +               .devname        = s3c2440-i2c.0, +#else +               .devname        = s3c2440-i2c, +#endif The #ifdef around the id of the

[PATCH] ARM: S5PV210: Set 1000ns as PWM backlight period on SMDKV210

2011-11-08 Thread Jingoo Han
The SMDK board uses LT3591 as backlight LED driver of LTE480WV LCD. According to the LT3591 datasheet, the switching frequency should be 1MHz. So, PWM period is calculated by following formula: PWM period = 1/switching frequency = 1/1MHz = 1000ns Thus, the PWM backlight

[PATCH] ARM: S5P: Fix export.h inclusion

2011-11-08 Thread Kukjin Kim
Commit 32aaeffbd4a7 (Merge branch 'modsplit-Oct31_2011'...) breaks build like following and this fixes it to add inclusion linux/export.h. arch/arm/plat-s5p/sysmmu.c:302: error: 'THIS_MODULE' undeclared here (not in a function) Signed-off-by: Kukjin Kim kgene@samsung.com ---