[PATCH 2/3] thermal: exynos: Use devm_regulator_get_optional() for vtmu
The Exynos TMU DT binding says that the vtmu-supply is optional but the driver uses devm_regulator_get() that creates a dummy regulator if it's not de
View Article[PATCH 3/3] thermal: exynos: Defer probe if vtmu is present but not registered
The driver doesn't check if the regulator_get_optional return value is -EPROBE_DEFER so it will wrongly assume that the regulator couldn't be found ju
View Article[PATCH] um, pkeys: give UML an arch_vma_access_permitted()
From: Dave Hansen <dave.hansen@linux.intel.com> UML has a special mmu_context.h and needs updates whenever the generic one is updated. The original
View Article[PATCH v1] tty: serial: Use GFP_ATOMIC instead of GFP_KERNEL in...
serial8250_em485_init() is supposed to be protected with p->port.lock spinlock. This may lead to issues when kmalloc sleeps, so it is better to use GF
View Article[PATCH] f2fs: set flush_merge by default
This helps mitigating redundant cache_flush commands. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> --- fs/f2fs/super.c | 1 + 1 file changed, 1 i
View Article[PATCH] mfd: Fix MACRO for commonly declared MFD cell attributes
MFD_ARRAY_SIZE() would not accurately return 0 if the passed parameter was NULL. Fix this so that num_resources will accurately be 0 in the case that
View ArticleRe: [linux-sunxi] Re: [PATCH] clk: sunxi: Add missing H3 apb0 clock...
On Thu, Feb 18, 2016 at 09:07:16AM -0800, Chen-Yu Tsai wrote: >On Thu, Feb 18, 2016 at 7:03 AM, Krzysztof Adamski ><krzysztof.adamski@tieto.com> wrote
View Article[PATCH v1 1/4] net: ti: netcp: restore get/set_pad_info() functionality
From: Arnd Bergmann <arnd@arndb.de> The commit 899077791403 ("netcp: try to reduce type confusion in descriptors") introduces a regression in Kernel
View Article[PATCH v1 2/4] soc: ti: knav_dma: rename pad in struct knav_dma_desc to sw_data
Rename the pad to sw_data as per description of this field in the hardware spec(refer sprugr9 from www.ti.com). Latest version of the document is at h
View Article[PATCH v1 3/4] net: netcp: rename {get/set}pad_info to {get/set}_sw_data
Rename the helpers to match with the updated dma desc field sw_data. Cc: Wingman Kwok <w-kwok2@ti.com> Cc: Mugunthan V N <mugunthanvnm@ti.com> CC: Ar
View Article[PATCH v1 4/4] net: netcp: rework the code for get/set sw_data in dma desc
SW data field in descriptor can be used by software to hold private data for the driver. As there are 4 words available for this purpose, use separate
View Article[PATCH] pinctrl: sunxi: Add missing H3 R_PIO binding documentation
allwinner,sun8i-h3-r-pinctrl was added by commit ba83a11104ae ("pinctrl: sunxi: Add H3 R_PIO controller support") but the patch was missing proper bin
View Article[PATCH] x86/ptdump: Remove paravirt_enabled()
From: Borislav Petkov <bp@suse.de> is_hypervisor_range() can simply check if the PGD index is within ffff800000000000 - ffff87ffffffffff which is the
View Article[PATCH] Create sysfs entries for PCI VPDI and VPDR tags
The VPD-R is a readonly area of the PCI Vital Product Data region. There are some standard keywords for serial number, manufacturer, and vendor-specif
View Article[PATCH v3 0/7] Trim unused exported kernel symbols
This patch series provides the option to omit exported symbols from the kernel and modules that are never referenced by any of the selected modules in
View Article[PATCH v3 1/7] kbuild: record needed exported symbols for modules
Kernel modules are partially linked object files with some undefined symbols that are expected to be matched with EXPORT_SYMBOL() entries from elsewhe
View Article[PATCH v3 2/7] allow for per-symbol configurable EXPORT_SYMBOL()
Similar to include/generated/autoconf.h, include/generated/autoksyms.h will contain a list of defines for each EXPORT_SYMBOL() that we want active. Th
View Article[PATCH v3 3/7] fixdep: accept extra dependencies on stdin
... and merge them in the list of parsed dependencies. Signed-off-by: Nicolas Pitre <nico@linaro.org> --- scripts/basic/fixdep.c | 60 ++++++++++++++
View Article[PATCH v3 4/7] kbuild: de-duplicate fixdep usage
The generation and postprocessing of automatic dependency rules is duplicated in rule_cc_o_c and if_changed_dep. Since this is not a trivial one-liner
View Article[PATCH v3 5/7] kbuild: add fine grained build dependencies for exported symbols
Like with kconfig options, we now have the ability to compile in and out individual EXPORT_SYMBOL() declarations based on the content of include/gener
View Article