[PATCH v2 5/5] irqchip: atmel-aic: add missing entry for rm9200 irq fixups

2014-11-03 Thread Boris Brezillon
From: Boris BREZILLON boris.brezil...@free-electrons.com The at91rm9200 have an RTT block and thus must at91rm9200_aic_irq_fixup has to be called when intialazing the irqchip. Signed-off-by: Boris BREZILLON boris.brezil...@free-electrons.com --- drivers/irqchip/irq-atmel-aic.c | 1 + 1 file

[PATCH v2 3/5] irqchip: atmel-aic: add specific irq fixup function for sam9g45 and sam9rl

2014-11-03 Thread Boris Brezillon
From: Boris BREZILLON boris.brezil...@free-electrons.com The at91sam9g45 and at91sam9rl SoCs embed one RTT (Real Time Timer) and one RTC block and thus need to call both rtt and rtc fixup functions. Signed-off-by: Boris BREZILLON boris.brezil...@free-electrons.com ---

[PATCH v2 2/5] irqchip: atmel-aic: add irq fixups for at91sam926x SoCs

2014-11-03 Thread Boris Brezillon
From: Boris BREZILLON boris.brezil...@free-electrons.com The at91sam9260, at91sam9261, at91sam9263 and at91sam9g20 embed an RTT (Real Time Timer) block and thus need to call the aic_common_rtt_irq_fixup function. Signed-off-by: Boris BREZILLON boris.brezil...@free-electrons.com ---

[PATCH v2 1/5] irqchip: atmel-aic: add irq fixup for RTT block

2014-11-03 Thread Boris Brezillon
From: Boris BREZILLON boris.brezil...@free-electrons.com Signed-off-by: Boris BREZILLON boris.brezil...@free-electrons.com --- drivers/irqchip/irq-atmel-aic-common.c | 26 ++ drivers/irqchip/irq-atmel-aic-common.h | 2 ++ 2 files changed, 28 insertions(+) diff --git

[PATCH v2 4/5] irqchip: atmel-aic: rename at91sam9_aic_irq_fixup for naming consistency

2014-11-03 Thread Boris Brezillon
From: Boris BREZILLON boris.brezil...@free-electrons.com Rename at91sam9_aic_irq_fixup into at91rm9200_aic_irq_fixup to be consistent with other fixup functions. Signed-off-by: Boris BREZILLON boris.brezil...@free-electrons.com --- drivers/irqchip/irq-atmel-aic.c | 6 +++--- 1 file changed, 3

[PATCH v2 0/5] irqchip: atmel-aic: add RTT irq fixup

2014-11-03 Thread Boris Brezillon
Hello, This patch series add a new fixup function for the RTT (Real Time Timer) block and make use of it on SoCs integrating at least one RTT to prevent spurious interrupts on the first interrupt line. This fixup function was previously implemented in arch/arm/mach-at91/sysirq_mask.c, but is now

[PATCH v9 01/18] input: cyapa: instruction of cyapa patches

2014-11-03 Thread Dudley Du
V9 patches have below updates compared with v8 patches: 1) Removed all async thread stuff from the driver. 2) Split driver into 18 patches for each function change one patch. V8 patches have below updates compared with v7 patches: 1) [PATCH v8 01/13] - Remove the async thread for device detect in

Re: [RFC PATCH] fs: allow open(dir, O_TMPFILE|..., 0) with mode 0

2014-11-03 Thread Christoph Hellwig
On Fri, Oct 31, 2014 at 11:53:09AM -0700, Linus Torvalds wrote: On Fri, Oct 31, 2014 at 11:44 AM, Andy Lutomirski l...@amacapital.net wrote: Does the patch in this thread not fix that? It should. Modulo the glibc problem that makes it hard to actually set the mode properly. That doesn't

[PATCH v9 01/18] input: cyapa: add device resource management infrastructure support

2014-11-03 Thread Dudley Du
Modify cyapa driver to support device resource management infrastructure to reduce the mistakes of resource management. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa.c | 48 ++--- 1 file changed, 19

[PATCH v9 07/18] input: cyapa: add sysfs interfaces supported in the cyapa driver

2014-11-03 Thread Dudley Du
Add device's basic control and features supported in cyapa driver through sysfs file system interfaces. These interfaces are commonly used in pre- and after production, for trackpad device state checking, managing and firmware image updating. These interfaces including firmware_version and

[PATCH v9 03/18] input: cyapa: add gen3 trackpad device basic functions support

2014-11-03 Thread Dudley Du
Based on the cyapa core, add the gen3 trackpad device's basic functions supported, so gen3 trackpad device can work with kernel input system. The basic function is absolutely same as previous cyapa driver. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com ---

[PATCH v9 08/18] input: cyapa: add gen3 trackpad device firmware update function support

2014-11-03 Thread Dudley Du
Add firmware image update function supported for gen3 trackpad device, it can be used through sysfs update_fw interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen3.c | 290 +++ 1 file changed, 290

[PATCH v9 06/18] input: cyapa: add runtime power management interfaces supported for the device

2014-11-03 Thread Dudley Du
Add runtime_suspend_scanrate_ms power management interfaces in device's power group, so users or applications can control the runtime power management strategy of trackpad device as their requirements. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com ---

[PATCH v9 05/18] input: cyapa: add power management interfaces supported for the device

2014-11-03 Thread Dudley Du
Add suspend_scanrate_ms power management interfaces in device's power group, so users or applications can control the power management strategy of trackpad device as their requirements. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa.c | 112

Re: [PATCH] next: input: Fix build error seen if input-core is built as module

2014-11-03 Thread Samuel Thibault
Hello, Guenter Roeck, le Sun 02 Nov 2014 21:53:17 -0800, a écrit : The following build error may be seen if input-core is built as module: drivers/input/leds.o: In function `init_module': leds.c:(.init.text+0x0): multiple definition of `init_module'

[PATCH v9 16/18] input: cyapa: add gen5 trackpad device read firmware image function support

2014-11-03 Thread Dudley Du
Add read firmware image function supported for gen5 trackpad device, it can be used through debugfs read_fw interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen5.c | 154 +++ 1 file changed, 154

[PATCH v9 09/18] input: cyapa: add gen3 trackpad device read baseline function support

2014-11-03 Thread Dudley Du
Add read baseline function supported for gen3 trackpad device, it can be used through sysfs baseline interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen3.c | 74 1 file changed, 74 insertions(+)

[PATCH v9 14/18] input: cyapa: add read firmware image debugfs interface support

2014-11-03 Thread Dudley Du
Add read firmware image from trackpad device interface supported in cyapa driver through debugfs read_fw interface. Through this interface user can read out, check and backup the firmware image of the trackpad device before any firmware update, or can use the backed image to do firmware image

[PATCH v9 13/18] input: cyapa: add gen5 trackpad device force re-calibrate function support

2014-11-03 Thread Dudley Du
Add force re-calibrate function supported for gen5 trackpad device, it can be used through sysfs calibrate interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen5.c | 65 1 file changed, 65

[PATCH v9 18/18] input: cyapa: add gen5 trackpad device read raw data function support

2014-11-03 Thread Dudley Du
Add read raw data function supported for gen5 trackpad device, it can be used through debugfs raw_data interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen5.c | 109 +++ 1 file changed, 109

[PATCH v9 17/18] input: cyapa: add read sensors raw data debugfs interface support

2014-11-03 Thread Dudley Du
Add read sensors' raw data from trackpad device interface supported in cyapa driver through debugfs raw_data interface. Through this interface, user can read difference count map of each sensors directly from trackpad device (some customers want). And it's useful to help users to find out the root

[PATCH v9 12/18] input: cyapa: add gen5 trackpad device read baseline function support

2014-11-03 Thread Dudley Du
Add read baseline function supported for gen5 trackpad device, it can be used through sysfs baseline interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen5.c | 606 +++ 1 file changed, 606

[PATCH v9 10/18] input: cyapa: add gen3 trackpad device force re-calibrate function support

2014-11-03 Thread Dudley Du
Add force re-calibrate function supported for gen3 trackpad device, it can be used through sysfs calibrate interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen3.c | 61 1 file changed, 61

Re: [PATCH v8 3/5] amba: Don't unprepare the clocks if device driver wants IRQ safe runtime PM

2014-11-03 Thread Krzysztof Kozlowski
On sob, 2014-11-01 at 01:01 +, Russell King - ARM Linux wrote: On Sat, Nov 01, 2014 at 12:55:14AM +, Russell King - ARM Linux wrote: On Sat, Nov 01, 2014 at 01:45:47AM +0100, Rafael J. Wysocki wrote: On Monday, October 20, 2014 11:04:46 AM Krzysztof Kozlowski wrote: @@ -198,8

[PATCH v9 11/18] input: cyapa: add gen5 trackpad device firmware update function support

2014-11-03 Thread Dudley Du
Add firmware image update function supported for gen5 trackpad device, it can be used through sysfs update_fw interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/Kconfig | 2 +- drivers/input/mouse/cyapa_gen5.c | 294

[PATCH v9 15/18] input: cyapa: add gen3 trackpad device read firmware image function support

2014-11-03 Thread Dudley Du
Add read firmware image function supported for gen3 trackpad device, it can be used through debugfs read_fw interface. TEST=test on Chromebooks. Signed-off-by: Dudley Du d...@cypress.com --- drivers/input/mouse/cyapa_gen3.c | 67 1 file changed, 67

[PATCH v9 04/18] input: cyapa: add gen5 trackpad device basic functions support

2014-11-03 Thread Dudley Du
Based on the cyapa core, add the gen5 trackpad device's basic functions supported, so gen5 trackpad device can work with kernel input system. And also based on the state parse interface, the cyapa driver can automatically determine the attached is gen3 or gen5 protocol trackpad device, then set

[PATCH] x86: avoid building unused IRQ entry stubs

2014-11-03 Thread Jan Beulich
When X86_LOCAL_APIC (i.e. unconditionally on x86-64), first_system_vector will never end up being higher than LOCAL_TIMER_VECTOR (0xef), and hence building stubs for vectors 0xef...0xff is pointlessly reducing code density. Deal with this at build time already. Taking into consideration that

Re: [PATCH v5 2/4] mm/page_alloc: add freepage on isolate pageblock to correct buddy list

2014-11-03 Thread Hui Zhu
On Mon, Nov 3, 2014 at 4:22 PM, Heesub Shin heesub.s...@samsung.com wrote: Hello, On 10/31/2014 04:25 PM, Joonsoo Kim wrote: In free_pcppages_bulk(), we use cached migratetype of freepage to determine type of buddy list where freepage will be added. This information is stored when freepage

Re: [PATCH 2/2] blk-mq: allow direct dispatch to a driver specific workqueue

2014-11-03 Thread Ming Lei
Hi Christoph, On Mon, Nov 3, 2014 at 4:23 PM, Christoph Hellwig h...@lst.de wrote: We have various block drivers that need to execute long term blocking operations during I/O submission like file system or network I/O. Currently these drivers just queue up work to an internal workqueue from

Re: [PATCH] reset: add socfpga_reset_status

2014-11-03 Thread Philipp Zabel
Hi Dinh, Am Freitag, den 24.10.2014, 10:53 -0500 schrieb dingu...@opensource.altera.com: From: Dinh Nguyen dingu...@opensource.altera.com Populate the reset_status callback for SOCFPGA. Signed-off-by: Alan Tull at...@opensource.altera.com Signed-off-by: Dinh Nguyen

Re: [PATCH v4] iio: iadc: Qualcomm SPMI PMIC current ADC driver

2014-11-03 Thread Ivan T. Ivanov
On Sat, 2014-11-01 at 20:46 +0100, Hartmut Knaack wrote: No it is not a typo. Calculation is really in nano Ohms. Right, but the typo is, that you wrote nono instead of nano. Oops. :-) Thanks. Ivan -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a

[PATCH v9 02/18] input: cyapa: re-design driver to support multi-trackpad in one driver

2014-11-03 Thread Dudley Du
In order to support multiple different chipsets and communication protocols trackpad devices in one cyapa driver, the new cyapa driver is re-designed with one cyapa driver core and multiple device specific functions component. The cyapa driver core is contained in this patch, it supplies basic

[char-misc-next V3] mei: add reference counting for me clients

2014-11-03 Thread Tomas Winkler
To support dynamic addition/remove we add reference counter. Signed-off-by: Tomas Winkler tomas.wink...@intel.com --- V2: code style and documentation fixes V3: 1. Use refcounter also in mei_me_cl_rm_all, 2. Replace mei_me_cl_rm_by_id with mei_me_cl_rm_by_uuid_id 3. Few more doc

Re: [PATCH v4] iio: iadc: Qualcomm SPMI PMIC current ADC driver

2014-11-03 Thread Ivan T. Ivanov
On Fri, 2014-10-31 at 21:48 +0100, Peter Meerwald wrote: Ivan T. Ivanov schrieb am 22.10.2014 16:13: The current ADC is peripheral of Qualcomm SPMI PMIC chips. It has 16 bits resolution and register space inside PMIC accessible across SPMI bus. The driver registers itself through

Re: [PATCH 0/4] (CMA_AGGRESSIVE) Make CMA memory be more aggressive about allocation

2014-11-03 Thread Hui Zhu
On Wed, Oct 29, 2014 at 10:43 PM, Vlastimil Babka vba...@suse.cz wrote: On 10/16/2014 10:55 AM, Laura Abbott wrote: On 10/15/2014 8:35 PM, Hui Zhu wrote: It's good to see another proposal to fix CMA utilization. Do you have any data about the success rate of CMA contiguous allocation after

[PATCH 1/2] ALSA: echoaudio: add reference of struct echoaudio

2014-11-03 Thread Sudip Mukherjee
added reference of struct echoaudio to free_firmware function. this structure will be later used to get a reference of the card when converting snd_printk to dev_* in the next patch of the series. Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- sound/pci/echoaudio/echoaudio.c | 3

[PATCH v9 00/18] input: cyapa: instruction of cyapa patches

2014-11-03 Thread Dudley Du
V9 patches have below updates compared with v8 patches: 1) Removed all async thread stuff from the driver. 2) Split driver into 18 patches for each function change one patch. V8 patches have below updates compared with v7 patches: 1) [PATCH v8 01/13] - Remove the async thread for device detect in

[PATCH 2/2] ALSA: echoaudio: remove all snd_printk

2014-11-03 Thread Sudip Mukherjee
removed all references of snd_printk with the standard dev_* macro. Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- sound/pci/echoaudio/darla20_dsp.c| 7 +- sound/pci/echoaudio/darla24_dsp.c| 15 ++-- sound/pci/echoaudio/echo3g_dsp.c | 7 +-

Re: [RFC V6 3/3] arm64:add bitrev.h file to support rbit instruction

2014-11-03 Thread Ard Biesheuvel
On 3 November 2014 03:17, Wang, Yalin yalin.w...@sonymobile.com wrote: From: Will Deacon [mailto:will.dea...@arm.com] +#ifndef __ASM_ARM64_BITREV_H +#define __ASM_ARM64_BITREV_H Really minor nit, but we don't tend to include 'ARM64' in our header guards, so this should just be

Re: [PATCH v3 2/6] pinctrl: Introduce pinctrl driver for Qualcomm SSBI PMIC's

2014-11-03 Thread Srinivas Kandagatla
Hi Bjorn, On 20/08/14 23:13, Bjorn Andersson wrote: On Wed, Aug 20, 2014 at 2:28 PM, Bjorn Andersson bjorn.anders...@sonymobile.com wrote: On Wed 20 Aug 01:06 PDT 2014, Srinivas Kandagatla wrote: 2 Looking back at v3.4 kernel, for gpio modes, BIT(0) of bank 0 is set to enable gpio mode.

[PATCH 3.12 000/144] 3.12.32-stable review

2014-11-03 Thread Jiri Slaby
This is the start of the stable review cycle for the 3.12.32 release. There are 144 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Tue Nov 4 13:44:15 CET 2014. Anything

Re: [PATCH v8 1/5] PM / Runtime: Add getter for querying the IRQ safe option

2014-11-03 Thread Krzysztof Kozlowski
On sob, 2014-11-01 at 01:42 +0100, Rafael J. Wysocki wrote: On Friday, October 31, 2014 11:04:52 PM Russell King - ARM Linux wrote: On Sat, Nov 01, 2014 at 12:11:05AM +0100, Rafael J. Wysocki wrote: [CC list trimmed + added Kevin Hilman] On Monday, October 20, 2014 11:04:44 AM

[PATCH 1/1] Input: xpad - update docs to reflect current state

2014-11-03 Thread Daniel Dressler
The last time this documentation was accurate was just over 8 years ago. In this time we've added support for two new generations of Xbox console controllers and dozens of third-party controllers. This patch unifies terminology and makes it explicit which model of controller a sentence refers to.

Re: [PATCH] USB: simple: add Google simple serial SubClass support

2014-11-03 Thread Johan Hovold
On Thu, Oct 30, 2014 at 09:54:54PM -0700, Anton Staaf wrote: On Thu, Oct 30, 2014 at 7:33 AM, Greg Kroah-Hartman gre...@linuxfoundation.org wrote: On Wed, Oct 29, 2014 at 02:21:56PM -0700, Anton Staaf wrote: Add support for Google devices that export simple serial interfaces using the

Re: [PATCH v3] mmc: dw_mmc: add support for the other bit of sdio interrupt

2014-11-03 Thread Jaehoon Chung
Hi, Addy. On 11/03/2014 10:20 AM, Addy Ke wrote: The bit of sdio interrupt is 16 in designware implementation, but it is 24 on Rockchip SoCs.This patch add sdio_id0 for the number of slot0 in the SDIO interrupt registers. Signed-off-by: Addy Ke addy...@rock-chips.com --- Changes in v2: -

Re: [GIT PULL] perf fixes

2014-11-03 Thread Paul Bolle
isn't fixed in next-20141103 or, as far as I can tell, in tip.git. So I decided to remind you to make sure this doesn't fall through the cracks. + config OUTPUT_FORMAT string default elf32-i386 if X86_32 Paul Bolle -- To unsubscribe from this list: send the line unsubscribe linux

[PATCH v2 0/3] Add Reset Controller for MediaTek SoC

2014-11-03 Thread Flora Fu
Hi, The patch modification is base on https://lkml.org/lkml/2014/5/27/422 Changes since v1 (1) Patch 1/3: Update reset controller driver's implementation. - rename mt_ prefixes to the prefix mtk_ - use module_platform_driver() macro for driver init. - clean up includes of

[PATCH v2 1/3] ARM: mediatek: Add Reset Controller for MediaTek SoC

2014-11-03 Thread Flora Fu
Add a driver in reset controller. Signed-off-by: Flora Fu flora...@mediatek.com --- drivers/reset/Makefile| 1 + drivers/reset/reset-mtk.c | 131 ++ 2 files changed, 132 insertions(+) create mode 100644 drivers/reset/reset-mtk.c diff --git

[PATCH v2 2/3] dt-bindings: Add Reset Controller for MediaTek SoC

2014-11-03 Thread Flora Fu
Add device tree bindings. Signed-off-by: Flora Fu flora...@mediatek.com --- .../devicetree/bindings/reset/mediatek,reset.txt | 45 ++ 1 file changed, 45 insertions(+) create mode 100644 Documentation/devicetree/bindings/reset/mediatek,reset.txt diff --git

[PATCH v2 3/3] ARM: dts: mt8135: Add Reset Controller for MediaTek SoC

2014-11-03 Thread Flora Fu
Add reset controller to MT8135 board dts. Signed-off-by: Flora Fu flora...@mediatek.com --- arch/arm/boot/dts/mt8135.dtsi | 26 ++ 1 file changed, 26 insertions(+) diff --git a/arch/arm/boot/dts/mt8135.dtsi b/arch/arm/boot/dts/mt8135.dtsi index 90a56ad..259a2b5 100644

Re: [RFT] ARM: shmobile: rcar-gen2: Fix build breakage

2014-11-03 Thread Krzysztof Kozlowski
On nie, 2014-11-02 at 10:10 +0100, Geert Uytterhoeven wrote: On Fri, Oct 31, 2014 at 4:02 PM, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: Fix build breakage when building allmodconfig or allyesconfig introduced by adding ISB instruction to rcar_gen2_timer_init() function

Re: [PATCH 1/1] mfd: intel_quark_i2c_gpio: Add Intel Quark X1000 I2C-GPIO MFD Driver

2014-11-03 Thread Andy Shevchenko
On Mon, 2014-11-03 at 15:39 +0800, Raymond Tan wrote: In Quark X1000, there's a single PCI device that provides both an I2C controller and a GPIO controller. This MFD driver will split the 2 devices for their respective drivers. This patch is based on Josef Ahmad's initial work for Quark

[PATCH v2] mfd: syscon: add child device support

2014-11-03 Thread Philipp Zabel
For devices which have a complete register for themselves, it is possible to place them next to the syscon device with overlapping reg ranges. The same is not possible for devices which only occupy bitfields in registers shared with other users. For devices that are completely controlled by

Re: PATCH : add support for HuiJia USB Gamepad connector (0e8f:1006 and 0e8f:3010)

2014-11-03 Thread Jiri Kosina
On Sat, 1 Nov 2014, Prédhomme Philippe wrote: Create each gamepad as a separate joystick. Both device (1006 is for Sega Saturn controllers, 3010 is for Sony Playstation 1/2 controllers) work the same as 0e8f:3013 (which is for Nintendo 64 controllers), so i used this device as reference to

Re: [PATCH 04/13] autofs4 - change printks AUTOFS defined prints

2014-11-03 Thread Ian Kent
On Mon, 2014-11-03 at 00:25 -0800, Joe Perches wrote: On Mon, 2014-11-03 at 16:12 +0800, Ian Kent wrote: Use the AUTOFS_*() print defines instead of raw printks. Please check the output of these conversions. For instance: diff --git a/fs/autofs4/waitq.c b/fs/autofs4/waitq.c [] @@

Re: [PATCH] pinctrl: baytrail: show output gpio state correctly on Intel Baytrail

2014-11-03 Thread Mika Westerberg
On Fri, Oct 31, 2014 at 11:45:09AM -0700, David Cohen wrote: I think adding the module exit + allowing this driver to be a module would be a good approach. Then we don't need to force generic x86 kernel binaries to always have this driver. Unless Mathias or Mika knows a constraint to force

Re: [PATCH 1/3] mfd: stmpe: add pull up/down register offsets for STMPE

2014-11-03 Thread Linus Walleij
On Wed, Oct 29, 2014 at 8:31 PM, Dmitry Torokhov dmitry.torok...@gmail.com wrote: On Wednesday, October 29, 2014 10:55:14 AM Linus Walleij wrote: On Mon, Oct 20, 2014 at 8:46 AM, Lee Jones lee.jo...@linaro.org wrote: On Sat, 18 Oct 2014, Linus Walleij wrote: This adds the register offsets

[PATCH v2] clk: Add PWM clock driver

2014-11-03 Thread Philipp Zabel
Some board designers, when running out of clock output pads, decide to (mis)use PWM output pads to provide a clock to external components. This driver supports this practice by providing an adapter between the PWM and clock bindings in the device tree. As the PWM bindings specify the period in the

Re: [PATCH v3] drivers: s390: net: ctcm: migrate variables to handle y2038 problem

2014-11-03 Thread Ursula Braun
Thx, Aya. Now I will add your patch to our collection for our next upstream posting on net_next. The only thing I want to change is removing your #include linux/jiffies.h lines. All affected routines use already #include linux/timer.h Thus these lines are not needed. Regards,

[PATCH 0/2 v3] cfg80211: mac80211: 802.11p OCB mode support

2014-11-03 Thread Rostislav Lisovy
The IEEE 802.11p amendment (already part of IEEE 802.11-2012) specifies usage of 5 and 10 MHz wide channels in 5.9GHz band for vehicular environment. All the 802.11p compliant devices should be set to the newly added operation mode -- OCB (Outside the Context of a BSS). No

[PATCH 2/2] mac80211: 802.11p OCB mode support

2014-11-03 Thread Rostislav Lisovy
This patch adds 802.11p OCB (Outside the Context of a BSS) mode support. When communicating in OCB mode a mandatory wildcard BSSID (48 '1' bits) is used. The EDCA parameters handling function was changed to support 802.11p specific values. The insertion of a newly discovered STAs is done in the

Re: [PATCH] crypto: caam: fix error reporting

2014-11-03 Thread Cristian Stoica
Hi Kim, On 10/31/2014 08:22 PM, Kim Phillips wrote: On Fri, 31 Oct 2014 18:57:33 +0200 Cristian Stoica cristian.sto...@freescale.com wrote: If this issue was brought up by h/w, the appropriate new error codes should be being introduced. If you have the new error codes please send them to

[PATCH 1/2] cfg80211: mac80211: 802.11p OCB mode handling

2014-11-03 Thread Rostislav Lisovy
This patch adds new iface type (NL80211_IFTYPE_OCB) representing the OCB (Outside the Context of a BSS) mode. When establishing a connection to the network a cfg80211_join_ocb function is called (particular nl80211_command is added as well). A mandatory parameters during the ocb_join operation are

Re: [PATCH v5 4/4] crypto: Add Allwinner Security System crypto accelerator

2014-11-03 Thread Maxime Ripard
On Fri, Oct 31, 2014 at 06:05:22PM +0800, Herbert Xu wrote: On Fri, Oct 31, 2014 at 10:57:06AM +0100, Maxime Ripard wrote: On a 3.18-rc2 kernel: $ git grep kmap -- crypto/ crypto/ahash.c: walk-data = kmap(walk-pg); crypto/ahash.c:

Re: [PATCH v8 1/5] PM / Runtime: Add getter for querying the IRQ safe option

2014-11-03 Thread Krzysztof Kozlowski
On sob, 2014-11-01 at 02:29 +0200, Laurent Pinchart wrote: Hi Krzysztof, On Friday 31 October 2014 15:40:16 Krzysztof Kozlowski wrote: On pią, 2014-10-31 at 15:22 +0100, Pavel Machek wrote: On Fri 2014-10-31 10:14:55, Krzysztof Kozlowski wrote: On pon, 2014-10-20 at 11:04 +0200,

Re: [PATCH 0/5] serial: jsm: Add support for the Digi Classic adapters

2014-11-03 Thread Dan Carpenter
Adding Mark to the CC list. He might be able to test this, and also he is the dgnc maintainer. Could you resend him the patches privately so he doesn't have to download corrupted versions from the list archive? regards, dan carpenter On Mon, Nov 03, 2014 at 01:06:25AM +0100, Konrad Zapalowicz

Re: [PATCH v2 2/3] dt-bindings: Add Reset Controller for MediaTek SoC

2014-11-03 Thread Philipp Zabel
Hi Flora, Am Montag, den 03.11.2014, 17:02 +0800 schrieb Flora Fu: Add device tree bindings. Signed-off-by: Flora Fu flora...@mediatek.com --- .../devicetree/bindings/reset/mediatek,reset.txt | 45 ++ 1 file changed, 45 insertions(+) create mode 100644

Re: [OPW kernel] [PATCH v3] drivers: s390: net: ctcm: migrate variables to handle y2038 problem

2014-11-03 Thread Arnd Bergmann
On Saturday 01 November 2014 02:16:14 Aya Mahfouz wrote: This patch is concerned with migrating the time variables for the s390 network driver. The changes handle the y2038 problem where timespec will overflow in the year 2038. timespec was replaced by unsigned long and all time variables get

Re: [PATCH v2 3/3] ARM: dts: mt8135: Add Reset Controller for MediaTek SoC

2014-11-03 Thread Philipp Zabel
Am Montag, den 03.11.2014, 17:02 +0800 schrieb Flora Fu: Add reset controller to MT8135 board dts. Signed-off-by: Flora Fu flora...@mediatek.com --- arch/arm/boot/dts/mt8135.dtsi | 26 ++ 1 file changed, 26 insertions(+) diff --git a/arch/arm/boot/dts/mt8135.dtsi

Re: [Patch v8 15/18] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-addition

2014-11-03 Thread Thomas Gleixner
On Sun, 2 Nov 2014, Jiang Liu wrote: + down_write(acpi_ioapic_rwsem); That wants to be acpi_ioapic_lock. Same issue in the following patches. You fixed it up in the last patch. Please don't resend. I folded the hunks back to the proper places already. Thanks, tglx -- To

Re: [PATCH 2/2] ALSA: echoaudio: remove all snd_printk

2014-11-03 Thread Takashi Iwai
At Mon, 3 Nov 2014 14:16:23 +0530, Sudip Mukherjee wrote: @@ -98,7 +99,7 @@ static int init_hw(struct echoaudio *chip, u16 device_id, u16 subdevice_id) ECHOCAPS_HAS_DIGITAL_MODE_SPDIF_OPTICAL | ECHOCAPS_HAS_DIGITAL_MODE_ADAT;

Re: [PATCH 1/1] mfd: intel_quark_i2c_gpio: Add Intel Quark X1000 I2C-GPIO MFD Driver

2014-11-03 Thread Bryan O'Donoghue
On 03/11/14 07:39, Raymond Tan wrote: In Quark X1000, there's a single PCI device that provides both an I2C controller and a GPIO controller. This MFD driver will split the 2 devices for their respective drivers. This patch is based on Josef Ahmad's initial work for Quark enabling. Hi

Re: [RFC Patch] gpio: add GPIO hogging mechanism

2014-11-03 Thread Linus Walleij
On Wed, Oct 29, 2014 at 9:53 AM, Pantelis Antoniou pantelis.anton...@gmail.com wrote: 3) I’m not very fond of having this being part of the gpio controller. This configuration conceptually has little to do with the gpio controller per se, it is more of a board specific thing. Why not come up

Re: [PATCH] sparc64: Add preprocessor symbols for PAGE_* pgprot_t values.

2014-11-03 Thread Clemens Ladisch
David Miller wrote: Kernel code assumes that the PAGE_* values are preprocessor symbols, and that therefore arch support can be checked for with #ifdef. At the moment, sparc64 does not implement any of the symbols checked for, so these checks happen to work. To prevent potential breakage

Re: [PATCH 1/1] PCI: EMU10K1: Deletion of unnecessary checks before three function calls

2014-11-03 Thread Takashi Iwai
At Sun, 02 Nov 2014 19:27:20 +0100, SF Markus Elfring wrote: The functions kfree(), release_firmware() and snd_util_memhdr_free() test whether their argument is NULL and then return immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle

Re: [alsa-devel] [PATCH] [RESEND] snd-es18xx: Add GPO controls

2014-11-03 Thread Takashi Iwai
At Sun, 2 Nov 2014 23:18:49 +0100, Ondrej Zary wrote: Add GPO0 and GPO1 (General Purpose Outputs) controls to mixer. These can be used on some cards to control amplifier mute (seen in ES1868 datasheet) or additional onboard chips such as QX2130 QXpander processor. These GPOs are present

Re: [PATCH] usb: yurex: fixed sparse warning of incorrect type

2014-11-03 Thread Sudip Mukherjee
On Fri, Oct 10, 2014 at 06:19:45PM +0530, Sudip Mukherjee wrote: fixed sparse warning of 1) incorrect type (different address spaces) 2) incorrect type in initializer Signed-off-by: Sudip Mukherjee su...@vectorindia.org --- drivers/usb/misc/yurex.c | 6 -- 1 file changed,

Re: [V9 PATCH 2/2] irqchip: gicv2m: Add supports for ARM GICv2m MSI(-X)

2014-11-03 Thread Marc Zyngier
Hi Suravee, On 31/10/14 08:26, suravee.suthikulpa...@amd.com wrote: From: Suravee Suthikulpanit suravee.suthikulpa...@amd.com ARM GICv2m specification extends GICv2 to support MSI(-X) with a new set of register frame. This patch introduces support for the non-secure GICv2m register frame.

Re: [Patch v8 15/18] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-addition

2014-11-03 Thread Jiang Liu
On 2014/11/3 17:41, Thomas Gleixner wrote: On Sun, 2 Nov 2014, Jiang Liu wrote: +down_write(acpi_ioapic_rwsem); That wants to be acpi_ioapic_lock. Same issue in the following patches. You fixed it up in the last patch. Please don't resend. I folded the hunks back to the proper places

Re: [RFC V6 3/3] arm64:add bitrev.h file to support rbit instruction

2014-11-03 Thread Will Deacon
On Mon, Nov 03, 2014 at 08:47:32AM +, Ard Biesheuvel wrote: On 3 November 2014 03:17, Wang, Yalin yalin.w...@sonymobile.com wrote: From: Will Deacon [mailto:will.dea...@arm.com] +#ifndef __ASM_ARM64_BITREV_H +#define __ASM_ARM64_BITREV_H Really minor nit, but we don't tend to

Re: [PATCH 1/1] s390/net: Deletion of unnecessary checks before two function calls

2014-11-03 Thread Dan Carpenter
This one is buggy. I'm sorry, but please stop sending these. For kfree(), at least we all know that kfree() accepts NULL pointer. But for this one: 1) I don't know what the functions do so I have to look at the code. 2) It's in a arch that I don't compile so cscope isn't set up meaning it's

[PATCH] [TRIVIAL] IBM Akebono: Remove select of IBM_EMAC_RGMII_WOL

2014-11-03 Thread Paul Bolle
Commit 2a2c74b2efcb (IBM Akebono: Add the Akebono platform) added a select of IBM_EMAC_RGMII_WOL. But that Kconfig symbol isn't (yet) part of the tree. So this select has been a nop since that commit was included in v3.16-rc1. The code to add this symbol is not included in next-20141103. So let's

Re: [PATCH v2 1/3] ARM: mediatek: Add Reset Controller for MediaTek SoC

2014-11-03 Thread Philipp Zabel
Am Montag, den 03.11.2014, 17:02 +0800 schrieb Flora Fu: Add a driver in reset controller. Signed-off-by: Flora Fu flora...@mediatek.com [...] This version looks good to me. I'm going to apply it as soon as there is agreement on the syscon child device patch. regards Philipp -- To

[PATCH 1/1] ARM: dts: dra72x-evm: Enable CPSW and MDIO

2014-11-03 Thread Mugunthan V N
Adding CPSW phy-id, CPSW and MDIO pinmux configuration for active and sleep states and enable them in board evm dts file. Signed-off-by: Mugunthan V N mugunthan...@ti.com --- Adding device tree entry for CPSW to make it work in Switch mode. Patches are tested on top of Nishanth's PM tree for

Re: [RFC Patch] gpio: add GPIO hogging mechanism

2014-11-03 Thread Linus Walleij
On Tue, Oct 21, 2014 at 10:09 PM, Benoit Parrot bpar...@ti.com wrote: Based on Boris Brezillion work this is a reworked patch of his initial GPIO hogging mechanism. This patch provides a way to initally configure specific GPIO when the gpio controller is probe. The actual DT scanning to

Re: [PATCH] regulator: adding disable options for regulator-always-on and regulator-boots-on

2014-11-03 Thread Markus Pargmann
Hi, On Mon, Nov 03, 2014 at 10:26:43AM +0900, Hugh Kang wrote: From: hugh.kang hugh.k...@lge.com If a regulator is set by always-on option, the regulator will be set forever. For example, suppose LDO1 is set to always-on at RevA.dts with including of a.dtsi. After that RevB.dts may wants

Re: [PATCH v5 1/6] of: Decrement refcount of previous endpoint in of_graph_get_next_endpoint

2014-11-03 Thread Philipp Zabel
Hi Mauro, Guennadi, Am Dienstag, den 30.09.2014, 10:06 +0200 schrieb Philipp Zabel: Am Montag, den 29.09.2014, 18:10 -0400 schrieb Greg Kroah-Hartman: On Mon, Sep 29, 2014 at 08:03:34PM +0200, Philipp Zabel wrote: Decrementing the reference count of the previous endpoint node allows to

Re: [GIT PULL] perf fixes

2014-11-03 Thread Peter Zijlstra
On Mon, Nov 03, 2014 at 10:02:01AM +0100, Paul Bolle wrote: +config PERF_EVENTS_INTEL_UNCORE + def_bool y + depends on PERF_EVENTS SUP_SUP_INTEL PCI One expects this to be fixed by s/SUP_SUP_INTEL/CPU_SUP_INTEL/. Yeah, I have that fixed; lemme try and get it in tip. -- To

Re: [PATCH v8 3/5] amba: Don't unprepare the clocks if device driver wants IRQ safe runtime PM

2014-11-03 Thread Russell King - ARM Linux
On Mon, Nov 03, 2014 at 09:36:45AM +0100, Krzysztof Kozlowski wrote: On sob, 2014-11-01 at 01:01 +, Russell King - ARM Linux wrote: Would another possible solution be to remember the irq-safeness in the suspend handler, and use that in the resume handler? Resume should /always/ undo

Re: [PATCH 2/2] tty: serial: msm: Support sysrq on uartDM devices

2014-11-03 Thread Daniel Thompson
On 31/10/14 18:08, Frank Rowand wrote: On 10/31/2014 2:43 AM, Daniel Thompson wrote: On 31/10/14 06:41, Stephen Boyd wrote: On 10/30, Daniel Thompson wrote: On 29/10/14 18:14, Stephen Boyd wrote: + r_count = min_t(int, count, sizeof(buf)); + + for (i = 0; i r_count; i++) {

Re: [PATCH v2] iio: inkern: Add of_xlate function to struct iio_info

2014-11-03 Thread Ivan T. Ivanov
On Sat, 2014-10-25 at 11:04 +0100, Jonathan Cameron wrote: On 22/10/14 16:32, Lars-Peter Clausen wrote: On 10/22/2014 05:29 PM, Ivan T. Ivanov wrote: When #iio-cells is greater than '0', the driver could provide a custom of_xlate function that reads the *args* and returns the

RE: [PATCH v9 3/3] i2c: imx: add DMA support for freescale i2c driver

2014-11-03 Thread Yao Yuan
Hi Wolfram, I have fixed the issues in v9. Could you please help to review this patch? Thanks Regards Yuan Yao -Original Message- From: linux-arm-kernel [mailto:linux-arm-kernel- boun...@lists.infradead.org] On Behalf Of Yuan Yao Sent: Saturday, October 11, 2014 6:57 PM To:

Re: [PATCH 2/2] blk-mq: allow direct dispatch to a driver specific workqueue

2014-11-03 Thread Christoph Hellwig
On Mon, Nov 03, 2014 at 04:40:47PM +0800, Ming Lei wrote: The above two aren't enough because the big problem is that drivers need a per-request work structure instead of 'hctx-run_work', otherwise there are at most NR_CPUS concurrent submissions. So the per-request work structure should be

Re: [PATCH] EnhanceIO ssd caching software

2014-11-03 Thread Andre' Bauer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Guys, whats the status of the inclusion of this patch? Regards Andr? Bauer Am 15.02.2013 um 07:02 schrieb OS Engineering: Hi Greg, Jens, We are submitting EnhanceIO(TM) software driver for an inclusion in linux staging tree. Present state

Re: [PATCH V2] x86, cpu: trivial printk formatting fixes

2014-11-03 Thread Borislav Petkov
On Sun, Nov 02, 2014 at 11:56:42AM +, Steven Honeyman wrote: A 2 line printk makes dmesg output messy, because the second line does not get a timestamp. For example: [0.012863] CPU0: Thermal monitoring enabled (TM1) [0.012869] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB

Re: [PATCH] of/irq: Drop obsolete 'interrupts' vs 'interrupts-extended' text

2014-11-03 Thread Mark Rutland
On Sat, Nov 01, 2014 at 11:35:31PM +, Bjorn Helgaas wrote: a9ecdc0fdc54 (of/irq: Fix lookup to use 'interrupts-extended' property first) updated the description to say that: - Both 'interrupts' and 'interrupts-extended' may be present - Software should prefer 'interrupts-extended'

Re: [PATCH v2 1/3] firmware loader: Introduce new API - request_firmware_abort()

2014-11-03 Thread Henrique de Moraes Holschuh
On Mon, 03 Nov 2014, Kweh Hock Leong wrote: Note for people who use request_firmware_nowait(): You are required to do your own synchronization after you call request_firmware_abort() in order to continue unloading the module. The example synchronization code shows below: while (THIS_MODULE

Re: [PATCH] staging: comedi: drivers: comedi_bond.c: Remove unneeded #define

2014-11-03 Thread Ian Abbott
On 02/11/14 22:12, Rickard Strandqvist wrote: Remove unneeded #define. This was previously included in a patch set two but patchset one was taken by mistake. Signed-off-by: Rickard Strandqvist rickard_strandqv...@spectrumdigital.se --- drivers/staging/comedi/drivers/comedi_bond.c |3 +--

Re: [PATCH v5 1/6] of: Decrement refcount of previous endpoint in of_graph_get_next_endpoint

2014-11-03 Thread Mauro Carvalho Chehab
Em Mon, 29 Sep 2014 20:03:34 +0200 Philipp Zabel p.za...@pengutronix.de escreveu: Decrementing the reference count of the previous endpoint node allows to use the of_graph_get_next_endpoint function in a for_each_... style macro. All current users of this function that pass a non-NULL prev

<    7   8   9   10   11   12   13   14   15   16   >