Re: [PATCH V3 05/11] staging: mt29f_spinand: set ECC algorithm explicitly

2016-04-21 Thread Greg Kroah-Hartman
On Thu, Apr 21, 2016 at 10:20:56PM +0200, Boris Brezillon wrote: > Hi Greg, > > On Sun, 17 Apr 2016 22:53:01 +0200 > Rafał Miłecki wrote: > > > This is part of process deprecating NAND_ECC_SOFT_BCH (and switching to > > enum nand_ecc_algo). > > Do you mind if I take this

From Hospital / Very Urgent.:

2016-04-21 Thread Angelina Ugusim Tayoli
My name is Angelina Ugusim Tayoli writing to you from hospital, therefore this message is very urgent. I have a donation to make which I will need your assistance to carry it out for me in your country, I'm a widow. I inherited the sum of USD 3.3 Million, from my late husband, I want to give it

can I trust you money for investment?

2016-04-21 Thread george karey
Dear Friend, My name is george karey from Peru, UN humanitarian abuse reporter station in Syria, On behalf of my partners, I seek your assistance to accommodate for us the sum of USD16. 2M. The money in question is sourced to us by the head of states as a gesture for appreciation of a good

规章制度能否规定对员工进行经济处罚

2016-04-21 Thread 煜林妮
26 新劳动合同法l社会保险法.xls Description: Binary data ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

[PATCH 07/10] staging: comedi: ni_mio_common: handle_a_interrupt() does not need ai_mite_status

2016-04-21 Thread H Hartley Sweeten
This function only handles the analog input interrupts, the dma was already handled. Remove the unecessary parameter and fix ni_E_interrupts() so that the comedi events are properly handled. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc:

[PATCH 05/10] staging: comedi: ni_mio_common: fix interrupt handler for dev->read_subdev

2016-04-21 Thread H Hartley Sweeten
There may not be a dev->read_subdev, i.e. an analog input subdevice, that supports async commands. If it doesn't exist the interrupt/dma will never be enabled. Fix ni_E_interrupt() so that the analog input subdevice is only handled if it exists. This also fixes minor NULL dereference issue in

[PATCH 01/10] staging: comedi: mite: check for transfer errors in mite_ack_linkc()

2016-04-21 Thread H Hartley Sweeten
Currently only some of the users of mite dma check for transfer errors. The ni_mio_common code does the check for the analog input and analog output subdevices. The m-series digital I/O subdevice and the counter subdevices (handled by ni_tiocmd) do not check. The ni_pcidio driver checks for the

[PATCH 02/10] staging: comedi: ni_mio_common: absorb mite_handle_b_linkc()

2016-04-21 Thread H Hartley Sweeten
Simplfy the LINKC handing by removing the helper function and moving the mite_sync_dma() into the main interrupt handler. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman ---

[PATCH 08/10] staging: comedi: mite: make mite_ack_linkc() handle mite_sync_dma()

2016-04-21 Thread H Hartley Sweeten
The mite dma is always synced on a LINKC status. Some of the mite users sync the dma regadless of the status. Add a 'sync' parameter to mite_ack_linkc() to force a dma sync. Then do the dma sync as needed. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott

[PATCH 04/10] staging: comedi: ni_mio_common: handle_b_interrupt() does not need ao_mite_status

2016-04-21 Thread H Hartley Sweeten
This function only handles the analog input interrupts, the dma was already handled. Remove the unecessary parameter and fix ni_E_interrupts() so that the comedi events are properly handled. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc:

[PATCH 03/10] staging: comedi: ni_mio_common: fix interrupt handler for dev->write_subdev

2016-04-21 Thread H Hartley Sweeten
There may not be a dev->write_subdev, i.e. an analog output subdevice, that supports async commands. If it doesn't exist the interrupt/dma will never be enabled. Fix ni_E_interrupt() so that the analog output subdevice is only handled if it exists. Signed-off-by: H Hartley Sweeten

[PATCH 06/10] staging: comedi: ni_mio_common: simplify AI LINKC handling

2016-04-21 Thread H Hartley Sweeten
Simplfy the LINKC handing for the analog input dma by moving it into the main interrupt handler. This function already hold the spinlock mite_channel_lock so call mite_sync_dma() directly instead of using the helper function. Signed-off-by: H Hartley Sweeten Cc: Ian

[PATCH 00/10] staging: mite: additional cleanup

2016-04-21 Thread H Hartley Sweeten
This series does some additional cleanup of the mite driver and the drivers that use it so that the CHSR_* bit defines do not need to be exposed. These apply after: [PATCH v2 00/15] staging: comedi: mite: cleanup driver H Hartley Sweeten (10): staging: comedi: mite: check for transfer errors

[PATCH 09/10] staging: comedi: mite: return void from mite_ack_linkc()

2016-04-21 Thread H Hartley Sweeten
Currently this function returns the value read from the mite channel status register. None of the callers use, or need, the returned value. For aesthetics, change the return to void. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg

[PATCH 10/10] staging: comedi: mite: don't expose CHSR_* bit defines

2016-04-21 Thread H Hartley Sweeten
These bit defines are only used in the mite driver. Move them so they are not needlessly exposed. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/mite.c | 36

[PATCH] vme: trivial spelling and capitalization fixes

2016-04-21 Thread Aaron Sierra
Fix a typo in the spurious interrupt warning and consistently capitalize VME, PCI, and DMA acronyms. Signed-off-by: Aaron Sierra --- drivers/vme/vme.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/vme/vme.c b/drivers/vme/vme.c

[PATCH v12 2/2] staging/android: refactor SYNC IOCTLs

2016-04-21 Thread Gustavo Padovan
From: Gustavo Padovan Change SYNC_IOC_FILE_INFO (former SYNC_IOC_FENCE_INFO) behaviour to avoid future API breaks and optimize buffer allocation. Now num_fences can be filled by the caller to inform how many fences it wants to retrieve from the kernel. If the

[PATCH v12 1/2] kernel.h: add u64_to_user_ptr()

2016-04-21 Thread Gustavo Padovan
From: Gustavo Padovan This function had copies in 3 different files. Unify them in kernel.h. Cc: Joe Perches Cc: Andrew Morton Cc: David Airlie Cc: Daniel Vetter Cc: Rob

[PATCH v12 0/2] staging/android: Sync ABI rework

2016-04-21 Thread Gustavo Padovan
From: Gustavo Padovan Hi, Here we clean up the Sync ABI and then improve in to a more optimized version. Also it is now less likely to need changes in the future. This is not breaking any upstream user of the sync framework, as no driver wired support for it, so

Re: [PATCH v5 2/6] drivers:hv: Call vmbus_mmio_free() to reverse vmbus_mmio_allocate()

2016-04-21 Thread Bjorn Helgaas
On Tue, Apr 05, 2016 at 06:18:18PM -0700, Jake Oshins wrote: > Existing code just called release_mem_region(). Adding a > wrapper around it allows the more complex range tracking > that is introduced later in this patch series. > > Signed-off-by: Jake Oshins With typo fix

Re: [PATCH 2/3] kernel.h: add u64_to_user_ptr()

2016-04-21 Thread Gustavo Padovan
2016-04-20 Joe Perches : > On Wed, 2016-04-20 at 16:18 -0300, Gustavo Padovan wrote: > > From: Gustavo Padovan > > > > This function had copies in 3 different files. Unify them in kernel.h. > [] > > diff --git a/include/linux/kernel.h

[PATCH 6/6] hyperv IRQ handler: trigger LRNG

2016-04-21 Thread Stephan Mueller
The Hyper-V Linux Integration Services use the VMBus implementation for communication with the Hypervisor. VMBus registers its own interrupt handler that completely bypasses the common Linux interrupt handling. The interrupt handler is now added the invocation of the LRNG IRQ collection function

Re: [PATCH v2 09/15] staging: comedi: mite: introduce mite_ack_linkc()

2016-04-21 Thread Ian Abbott
On 20/04/16 18:36, H Hartley Sweeten wrote: Introduce a helper function to handle the ack of a LINKC interrupt. Tidy up the drivers that use the new helper. The extra check for CHSR_INT in the ni_pcidio driver is not necessary. This bit will be set if any of the interrupt sources, including

Re: [PATCH 09/15] staging: comedi: mite: introduce mite_ack_linkc()

2016-04-21 Thread Ian Abbott
On 20/04/16 18:24, Hartley Sweeten wrote: On Wednesday, April 20, 2016 2:44 AM, Ian Abbott wrote: On 19/04/16 17:41, Hartley Sweeten wrote: [snip] How do you feel about removing the "unknown" interrupt checks? If they are removed the CHSR_* defines in mite.h can be moved to the mite driver