Re: [PATCH] block: don't access bio->bi_error after bio_put()
Hi Sasha, thanks for the report. I actually sent a similar patch to Jens a couple days ago, but it seems he's on vacation currently asI haven't seen him reply to this or other patches. -- To...
View Article[PATCH 3/4] rtc: s3c: use unified functions for enable/disable of clk
The driver uses clk_prepare_enable()/clk_disable_unprepare() only in probe only, elsewhere, use the unified functions for enable/disable of clk, e.g. s3c_rtc_enable_clk() / s3c_rtc_disable_clk(), so...
View Article[PATCH 4/4] rtc: s3c: enable/disable clocks for alarm
The clock enable/disable codes for alarm have removed from 'commit 24e1455493da ("drivers/rtc/rtc-s3c.c: delete duplicate clock control")' and the clocks keep disabling even if alarm is set, so alarm...
View Article[PATCH 1/4] rtc: s3c: add missing clk control
It's missed to call clk_unprepare() about info->rtc_src_clk in s3c_rtc_remove and to call clk_disable_unprepare about info->rtc_clk in error routine of s3c_rtc_probe. Signed-off-by: Joonyoung...
View Article[PATCH 2/4] rtc: s3c: remove unnecessary NULL assignment
It's unnecessary the code that assigns info->rtc_clk to NULL in s3c_rtc_remove. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> --- drivers/rtc/rtc-s3c.c | 1 - 1 file changed, 1...
View Article[PATCH v6 1/6] mmc: sdhci-esdhc-imx: add imx7d support and support HS400
The imx7d usdhc is derived from imx6sx, the difference is that imx7d support HS400. So introduce a new compatible string for imx7d and add HS400 support for imx7d usdhc. Signed-off-by: Haibo Chen...
View Article[PATCH v6 3/6] mmc: sdhci-esdhc-imx: add imx7d support in bingding doc
Add a required property "fsl,imx7d-usdhc" in binding doc. Add an optional property "fsl,tuning-step" in binding doc. Signed-off-by: Haibo Chen <haibo.chen@freescale.com> ---...
View Article[PATCH v6 0/6] mmc: imx: a few fixes and new feature
Changes for v6: -remove duplicate code in esdhc_set_uhs_signaling(). -fix a typo for patch-2. -make commit log of patch-3 more specific. Haibo Chen (6): mmc: sdhci-esdhc-imx: add imx7d support and...
View Article[PATCH v6 4/6] ARM: dts: imx7d-sdb: add eMMC5.0 support
imx7d-sdb board has a eMMC5.0 on usdhc3. This eMMC support HS400. This patch add usdhc3 support for HS400 Signed-off-by: Haibo Chen <haibo.chen@freescale.com> --- arch/arm/boot/dts/imx7d-sdb.dts...
View Article[PATCH v6 5/6] mmc: sdhci-esdhc-imx: set back the burst_length_enable bit to 1
Currently we find that if a usdhc is choosed to boot system, then ROM code will set the burst length enable bit of this usdhc as 0. This will make performance drop a lot if this usdhc's burst length...
View Article[PATCH v6 6/6] mmc: sdhci-esdhc-imx: change default watermark level and burst...
By default, for all imx SoC types, the watermark level is 16, and the burst length is 8. But if the SDIO/SD/MMC I/O speed is fast enough, this default watermark level and burst length will be the...
View ArticleRe: [PATCH RFC RFT 3/3] clk: introduce CLK_ENABLE_HAND_OFF flag
Hi Geert, On 08/11/2015 12:11 PM, Geert Uytterhoeven wrote: > Hi Maxime, > > On Tue, Aug 11, 2015 at 12:02 PM, Maxime Coquelin > <maxime.coquelin@st.com> wrote: >> How can we...
View ArticleRe: [PATCH] printk: rebalance printk
I think you have already known how to reproduce it. Let me still share the debug patch to hit this printk issue in several seconds. +static int auto_printk(void *data) +{ + int irq = (int)data; + char...
View Article[PATCH v6 2/6] mmc: sdhci-esdhc-imx: add tuning-step setting support
tuning-step is the delay cell steps in tuning procedure. The default value of tuning-step is 1. Some boards or cards need another value to pass the tuning procedure. For example, imx7d-sdb board need...
View Article[PATCH v9 2/3] tpm: move the PPI attributes to character device directory.
Moved PPI attributes to the character device directory. This aligns with the sysfs guidelines and makes them race free because they are created atomically with the character device as part of...
View Article[PATCH v9 1/3] sysfs: added __compat_only_sysfs_link_entry_to_kobj()
Added a new function __compat_only_sysfs_link_group_to_kobj() that adds a symlink from attribute or group to a kobject. This needed for maintaining backwards compatibility with PPI attributes in the...
View Article[PATCH v9 3/3] tpm: update PPI documentation to address the location change.
Updated Documentation/ABI/testing/sysfs-driver-ppi in order to explain where PPI attributes are located and how backwards compatiblity is addressed. Signed-off-by: Jarkko Sakkinen...
View ArticleRe: [PATCH] Drivers: hv: vmbus: fix init_vp_index() for reloading hv_netvsc
On Wed, Aug 12, 2015 at 01:35:07PM +0000, Dexuan Cui wrote: > > From: Dan Carpenter [mailto:dan.carpenter@oracle.com] > > On Wed, Aug 12, 2015 at 12:29:46PM +0000, Dexuan Cui wrote: >...
View ArticleRe: [RFC] coccinelle: add style check for assignment in if
On 2015-08-12 15:51, Kris Borer wrote: > Add a semantic patch for fixing some cases of checkpatch.pl error: > > ERROR: do not use assignment in if condition There is a gcc warning for this...
View Article[PATCH v2] arm64: add ioread64be and iowrite64be macros
This will allow device drivers to consistently use io{read,write}XXbe macros in all cases. Signed-off-by: Alex Porosanu <alexandru.porosanu@freescale.com> Signed-off-by: Horia Geantă...
View Article