Re: [PATCH 00/15] ARM: pxa: switch to DMA slave maps

2018-04-04 Thread Arnd Bergmann
On Thu, Apr 5, 2018 at 8:29 AM, Ulf Hansson wrote: > On 4 April 2018 at 21:56, Boris Brezillon wrote: >> On Wed, 04 Apr 2018 21:49:26 +0200 >> Robert Jarzmik wrote: >> >>> Ulf Hansson writes: >>> >>> > On 2 April 2018 at 16:26, Robert Jarzmik wrote: >>> >> Hi, >>> >> >>> >> This serie is aimed

Re: [PATCH 00/15] ARM: pxa: switch to DMA slave maps

2018-04-04 Thread Ulf Hansson
On 4 April 2018 at 21:56, Boris Brezillon wrote: > On Wed, 04 Apr 2018 21:49:26 +0200 > Robert Jarzmik wrote: > >> Ulf Hansson writes: >> >> > On 2 April 2018 at 16:26, Robert Jarzmik wrote: >> >> Hi, >> >> >> >> This serie is aimed at removing the dmaengine slave compat use, and >> >> transfe

Re: [GIT PULL] Staging/IIO driver changes for 4.17-rc1

2018-04-04 Thread Linus Torvalds
On Wed, Apr 4, 2018 at 3:32 AM, Greg KH wrote: > > It is a lot, over 500 changes, but not huge by previous kernel release > standards. We deleted more lines than we added again (27k added vs. 91k > remvoed), thanks to finally being able to delete the IRDA drivers and > networking code. Hmm. The

Re: [PATCH v2 00/21] Allow compile-testing NO_DMA (drivers)

2018-04-04 Thread Rob Herring
On Fri, Mar 16, 2018 at 8:51 AM, Geert Uytterhoeven wrote: > Hi all, > > If NO_DMA=y, get_dma_ops() returns a reference to the non-existing > symbol bad_dma_ops, thus causing a link failure if it is ever used. > > The intention of this is twofold: > 1. To catch users of the DMA API on sy

Re: [PATCH] staging: mt7621-gpio: prefer unsigned int to bare unsigned

2018-04-04 Thread NeilBrown
On Mon, Apr 02 2018, Sergio Paracuellos wrote: > This commit replaces some bare unsigned definitions in some > function parameters in favour of 'unsigned int' which is > preferred. > > This also fix checkpatch warnings about this. > > Signed-off-by: Sergio Paracuellos Reviewed-by: NeilBrown Th

Re: [PATCH v2 00/34] staging: mt7621-mmc: First cleanups

2018-04-04 Thread NeilBrown
On Thu, Apr 05 2018, Christian Lütke-Stetzkamp wrote: > On Thu, Apr 05, 2018 at 08:06:47AM +1000, NeilBrown wrote: >> On Wed, Apr 04 2018, Christian Lütke-Stetzkamp wrote: >> >> > This patch series does the first cleanups in this driver. At some >> > points I already tried to get the code of this

Re: [PATCH v2 00/34] staging: mt7621-mmc: First cleanups

2018-04-04 Thread Christian Lütke-Stetzkamp
On Thu, Apr 05, 2018 at 08:06:47AM +1000, NeilBrown wrote: > On Wed, Apr 04 2018, Christian Lütke-Stetzkamp wrote: > > > This patch series does the first cleanups in this driver. At some > > points I already tried to get the code of this driver as near as > > possible to the mk-sd driver in mainli

Re: [PATCH v2 00/34] staging: mt7621-mmc: First cleanups

2018-04-04 Thread NeilBrown
On Wed, Apr 04 2018, Christian Lütke-Stetzkamp wrote: > This patch series does the first cleanups in this driver. At some > points I already tried to get the code of this driver as near as > possible to the mk-sd driver in mainline. > > Changes in v2: > * fix typos > * Clearify comment regarding r

[PATCH v2 03/34] staging: mt7621-mmc: Remove whitespace errors in dbg.h

2018-04-04 Thread Christian Lütke-Stetzkamp
The whitespace errors in the file dbg.h are fixed by using the cleanfile script. Indentations with whitespaces are not changed in this patch. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.h | 38 +++--- 1 file changed, 19 insertions(+

[PATCH v2 14/34] staging: mt7621-mmc: Fix trailing statements

2018-04-04 Thread Christian Lütke-Stetzkamp
Fix checkpatch error: TRAILING_STATEMENTS Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 25 ++--- drivers/staging/mt7621-mmc/dbg.h | 3 ++- drivers/staging/mt7621-mmc/sd.c | 39 ++- 3 files changed, 46 in

[PATCH v2 08/34] staging: mt7621-mmc: Fix indent for dbg.h

2018-04-04 Thread Christian Lütke-Stetzkamp
This fixes the indentaions in the file dbg.h Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.h | 60 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/drivers/staging/mt7621-mmc/dbg.h b/drivers/staging/mt7621-mmc/

[PATCH v2 22/34] staging: mt7621-mmc: Cleanup function mt_msdc_init

2018-04-04 Thread Christian Lütke-Stetzkamp
Cleanup the mt_msdc_init function, remove excceding printk. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt7621-mmc/sd.c index 1d689657e7b1..d7869b665255 10064

[PATCH v2 01/34] staging: mt7621-mmc: Remove whitespace errors in board.h

2018-04-04 Thread Christian Lütke-Stetzkamp
The whitespace errors in the file board.h are fixed by using the cleanfile script. Indentations with whitespaces are not changed in this patch. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/board.h | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git

[PATCH v2 33/34] staging: mt7621-mmc: Fix requesting of irq

2018-04-04 Thread Christian Lütke-Stetzkamp
The request of the irq line is not correctly handled by the current code, platform_get_irq may fail and if the irq is requested via devm_request_irq, its release is automatically done. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 34 ++---

[PATCH v2 28/34] staging: mt7621-mmc: Remove unnecessary setting of dev.platform_data

2018-04-04 Thread Christian Lütke-Stetzkamp
In the probe function, pdev->dev.platform_data is set to &msdc0_hw, but the only get access to that is also in the probe function. So that assignment is removed. The msdc0_hw structure is still available to the driver as part of the msdc_host structure. Signed-off-by: Christian Lütke-Stetzkamp --

[PATCH v2 18/34] staging: mt7621-mmc: Replace seq_printf with seq_puts where possible

2018-04-04 Thread Christian Lütke-Stetzkamp
Replace seq_printf with seq_puts when the string is const. Fix checkpatch warning: PREFER_SEQ_PUTS Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/staging/mt7621-mmc/d

[PATCH v2 24/34] staging: mt7621-mmc: Fix memory leek in case of error in probe

2018-04-04 Thread Christian Lütke-Stetzkamp
If the base address is not successfully obtained in the probe function, then the mmc_host struct is not freed. Adding an exit for that case fixes the bug. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) di

[PATCH v2 27/34] staging: mt7621-mmc: Fix bug on dma_alloc_coherent fail

2018-04-04 Thread Christian Lütke-Stetzkamp
In case of dma_alloc_coherent failing the current code just called BUG_ON. By adding error handling for that case this can be avoided. This also fixes a memory leek in case of a fail later on in the probe function. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 12

[PATCH v2 12/34] staging: mt7621-mmc: Fix Pointer Location

2018-04-04 Thread Christian Lütke-Stetzkamp
Fix checkpatch error: POINTER_LOCATION Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/board.h | 2 +- drivers/staging/mt7621-mmc/dbg.c | 8 +++--- drivers/staging/mt7621-mmc/sd.c| 56 +++--- 3 files changed, 33 insertions(+), 33 de

[PATCH v2 02/34] staging: mt7621-mmc: Remove whitespace errors in dbg.c

2018-04-04 Thread Christian Lütke-Stetzkamp
The whitespace errors in the file dbg.c are fixed by using the cleanfile script. Indentations with whitespaces are not changed in this patch. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 190 +++ 1 file changed, 95 insertions

[PATCH v2 31/34] staging: mt7621-mmc: Remove dead codepath from probe function

2018-04-04 Thread Christian Lütke-Stetzkamp
The probe function contains lots of code, that is never used, because the fields it checks for in the msdc_hw structure are never initialized. Removing them should be safe. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 20 1 file changed, 20

[PATCH v2 00/34] staging: mt7621-mmc: First cleanups

2018-04-04 Thread Christian Lütke-Stetzkamp
This patch series does the first cleanups in this driver. At some points I already tried to get the code of this driver as near as possible to the mk-sd driver in mainline. Changes in v2: * fix typos * Clearify comment regarding request irq Christian Lütke-Stetzkamp (34): staging: mt7621-mmc: R

[PATCH v2 32/34] staging: mt7621-mmc: Fix dma_alloc_coherent should get device as first param

2018-04-04 Thread Christian Lütke-Stetzkamp
The dma_alloc_coherent (and also dma_free_coherent) should get the device, the dma memory is allocated for as the first parameter. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/

[PATCH v2 07/34] staging: mt7621-mmc: Fix indent for board.h

2018-04-04 Thread Christian Lütke-Stetzkamp
This fixes the indentaions in the file board.h Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/board.h | 68 +++--- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/drivers/staging/mt7621-mmc/board.h b/drivers/staging/mt7621

[PATCH v2 34/34] staging: mt7621-mmc: Remove duplicate defines

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove defines that are both in board.h and sd.c from sd.c, this file already includes board.h Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt7621-mmc/sd.c

[PATCH v2 23/34] staging: mt7621-mmc: Refactor suspend, resume

2018-04-04 Thread Christian Lütke-Stetzkamp
Refactor msdc_drv_{suspend, resume} by adding a new function msdc_drv_pm, that cleans up the code and removes double code. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 26 +++--- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a

[PATCH v2 17/34] staging: mt7621-mmc: Remove redundant driver owner assignment

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove the owner assignment form the platform driver as platform_driver_register() already initializes the owner. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt76

[PATCH v2 11/34] staging: mt7621-mmc: Fix spacing

2018-04-04 Thread Christian Lütke-Stetzkamp
Fixes checkpatch errors, warnings, checks: SPACING, LEADING_SPACE, LINE_SPACING Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/board.h | 3 +- drivers/staging/mt7621-mmc/dbg.c | 67 - drivers/staging/mt7621-mmc/dbg.h | 16 +-- drivers/staging/

[PATCH v2 20/34] staging: mt7621-mmc: Remove code for different soc types

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove code that is intended for soc other then the mt7621 because this driver is only for that soc. This also removes some conditions. However the remaining code is also at the wrong place, it just selects the mode of the pins, this is a job for pinctl not for the sdxc driver. Signed-off-by: Chri

[PATCH v2 13/34] staging: mt7621-mmc: Remove unnecessary typedefs

2018-04-04 Thread Christian Lütke-Stetzkamp
Fixes checkpatch warning: NEW_TYPEDEFS Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 2 +- drivers/staging/mt7621-mmc/dbg.h | 11 +- drivers/staging/mt7621-mmc/mt6575_sd.h | 305 +++-- drivers/staging/mt7621-mmc/sd.c

[PATCH v2 26/34] staging: mt7621-mmc: Fix unmatched release_mem_regin

2018-04-04 Thread Christian Lütke-Stetzkamp
Current code calls release_mem_regin on driver remove without requesting it explicit first. The region is only requested via devm_ioremap_resource and that releases it automatically. Removing the release_mem_region calls fixes this. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt

[PATCH v2 05/34] staging: mt7621-mmc: Remove whitespace errors in sd.c

2018-04-04 Thread Christian Lütke-Stetzkamp
The whitespace errors in the file sd.c are fixed by using the cleanfile script. Indentations with whitespaces are not changed in this patch. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 1142 +++ 1 file changed, 571 insertions

[PATCH v2 29/34] staging: mt7621-mmc: Remove unnecessary field from struct msdc_hw

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove the unnecessary field data_pins from msdc_hw, later this information should be taken from the device tree. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/board.h | 1 - drivers/staging/mt7621-mmc/sd.c| 10 -- 2 files changed, 4 insertions(+), 7 deleti

[PATCH v2 04/34] staging: mt7621-mmc: Remove whitespace errors in mt6575_sd.h

2018-04-04 Thread Christian Lütke-Stetzkamp
The whitespace errors in the file mt6575_sd.h are fixed by using the cleanfile script. Indentations with whitespaces are not changed in this patch. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/mt6575_sd.h | 49 +- 1 file changed, 24 inse

[PATCH v2 16/34] staging: mt7621-mmc: Fix style of braces

2018-04-04 Thread Christian Lütke-Stetzkamp
Fix checkpatch errors, warnings, checks about braces: BRACES, ELSE_AFTER_BRACE, OPEN_BRACE Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 31 +++ drivers/staging/mt7621-mmc/mt6575_sd.h | 3 +- drivers/staging/mt7621-mmc/sd.c| 154

[PATCH v2 09/34] staging: mt7621-mmc: Fix indent for mt6575_sd.h

2018-04-04 Thread Christian Lütke-Stetzkamp
This fixes the indentaions in the file mt7621_sd.h Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/mt6575_sd.h | 820 - 1 file changed, 410 insertions(+), 410 deletions(-) diff --git a/drivers/staging/mt7621-mmc/mt6575_sd.h b/drivers/stag

[PATCH v2 19/34] staging: mt7621-mmc: Remove code guarded by nonexistent config option

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove a piece of code that is guarded by a config option, that is nonexistent, the function it calls is also nonexistent. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/drivers/staging/mt7621-mmc/sd.c b/driv

[PATCH v2 21/34] staging: mt7621-mmc: Remove unused datastructures

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove unused datastructures and comments referring to their former use. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 23 --- 1 file changed, 23 deletions(-) diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt7621-mmc/sd.c inde

[PATCH v2 06/34] staging: mt7621-mmc: Fix indent for dbg.c

2018-04-04 Thread Christian Lütke-Stetzkamp
This fixes the indentaions in the file dbg.c Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 258 +++ 1 file changed, 129 insertions(+), 129 deletions(-) diff --git a/drivers/staging/mt7621-mmc/dbg.c b/drivers/staging/mt7621-mm

[PATCH v2 25/34] staging: mt7621-mmc: Remove code checking for old kernel versions

2018-04-04 Thread Christian Lütke-Stetzkamp
Remove code, that is checking for old kernel versions, leaving only the case for current versions. Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/sd.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/stagi

[PATCH v2 30/34] staging: mt7621-mmc: Fix different caps for different devices

2018-04-04 Thread Christian Lütke-Stetzkamp
Current code saves the need for polling in a global variable, that leeds to problems, when the driver should handle multiple devices with different capabilities. By looking up the capability in the mmc_host capabilities, they now have per device scope. Signed-off-by: Christian Lütke-Stetzkamp ---

[PATCH v2 15/34] staging: mt7621-mmc: Remove global initialise to 0

2018-04-04 Thread Christian Lütke-Stetzkamp
Fix checkpatch error: GLOBAL_INITIALISERS Signed-off-by: Christian Lütke-Stetzkamp --- drivers/staging/mt7621-mmc/dbg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/mt7621-mmc/dbg.c b/drivers/staging/mt7621-mmc/dbg.c index 60c704d6adc2..1e4c95b659da 1

Re: [PATCH 00/15] ARM: pxa: switch to DMA slave maps

2018-04-04 Thread Boris Brezillon
On Wed, 04 Apr 2018 21:49:26 +0200 Robert Jarzmik wrote: > Ulf Hansson writes: > > > On 2 April 2018 at 16:26, Robert Jarzmik wrote: > >> Hi, > >> > >> This serie is aimed at removing the dmaengine slave compat use, and > >> transfer > >> knowledge of the DMA requestors into architecture co

Re: [PATCH 00/15] ARM: pxa: switch to DMA slave maps

2018-04-04 Thread Robert Jarzmik
Ulf Hansson writes: > On 2 April 2018 at 16:26, Robert Jarzmik wrote: >> Hi, >> >> This serie is aimed at removing the dmaengine slave compat use, and transfer >> knowledge of the DMA requestors into architecture code. >> As this looks like a patch bomb, each maintainer expressing for his tree

Re: [PATCH 04/11] staging: vchiq_arm: Clear VLA warning

2018-04-04 Thread Stefan Wahren
> kbuild test robot hat am 1. April 2018 um 01:36 geschrieben: > > > Hi Stefan, > > I love your patch! Perhaps something to improve: > > [auto build test WARNING on staging/staging-testing] > [also build test WARNING on v4.16-rc7 next-20180329] > [if your patch is applied to the wrong git tre

Re: [PATCH v2 char-misc 1/1] x86/hyperv: Add interrupt handler annotations

2018-04-04 Thread Greg KH
On Wed, Apr 04, 2018 at 03:47:03PM +, Michael Kelley (EOSG) wrote: > > -Original Message- > > From: Greg KH > > Sent: Wednesday, April 4, 2018 1:16 AM > > To: Michael Kelley (EOSG) > > Cc: linux-ker...@vger.kernel.org; de...@linuxdriverproject.org; > > o...@aepfle.de; > > a...@canoni

RE: [PATCH v2 char-misc 1/1] x86/hyperv: Add interrupt handler annotations

2018-04-04 Thread Michael Kelley (EOSG)
> -Original Message- > From: Greg KH > Sent: Wednesday, April 4, 2018 1:16 AM > To: Michael Kelley (EOSG) > Cc: linux-ker...@vger.kernel.org; de...@linuxdriverproject.org; > o...@aepfle.de; > a...@canonical.com; vkuzn...@redhat.com; jasow...@redhat.com; > leann.ogasaw...@canonical.com; m

Re: [PATCH v3 0/9] staging: ks7010: factor out some functions

2018-04-04 Thread Sergio Paracuellos
On Wed, Apr 4, 2018 at 12:04 PM, Dan Carpenter wrote: > Looks good. Thanks! > > Reviewed-by: Dan Carpenter Thanks for reviewing, Dan! > > regards, > dan carpenter > Best regards, Sergio Paracuellos ___ devel mailing list de...@linuxdriverproject

Re: [PATCH] MAINTAINERS: add dri-devel&linaro-mm for Android ION

2018-04-04 Thread Greg Kroah-Hartman
On Wed, Apr 04, 2018 at 05:17:08PM +0200, Daniel Vetter wrote: > On Wed, Apr 4, 2018 at 4:30 PM, Greg Kroah-Hartman > wrote: > > On Wed, Apr 04, 2018 at 07:17:39AM -0700, Laura Abbott wrote: > >> On 04/04/2018 03:30 AM, Daniel Vetter wrote: > >> > Most of the other cross-driver gfx infrastructure

Re: [PATCH] MAINTAINERS: add dri-devel&linaro-mm for Android ION

2018-04-04 Thread Daniel Vetter
On Wed, Apr 4, 2018 at 4:30 PM, Greg Kroah-Hartman wrote: > On Wed, Apr 04, 2018 at 07:17:39AM -0700, Laura Abbott wrote: >> On 04/04/2018 03:30 AM, Daniel Vetter wrote: >> > Most of the other cross-driver gfx infrastructure (dma_buf, dma_fence) >> > also gets cross posted to all the relevant gfx/

Re: [PATCH] MAINTAINERS: add dri-devel&linaro-mm for Android ION

2018-04-04 Thread Greg Kroah-Hartman
On Wed, Apr 04, 2018 at 07:17:39AM -0700, Laura Abbott wrote: > On 04/04/2018 03:30 AM, Daniel Vetter wrote: > > Most of the other cross-driver gfx infrastructure (dma_buf, dma_fence) > > also gets cross posted to all the relevant gfx/memory lists. Doing the > > same for ION means people won't miss

Re: [PATCH] MAINTAINERS: add dri-devel&linaro-mm for Android ION

2018-04-04 Thread Laura Abbott
On 04/04/2018 03:30 AM, Daniel Vetter wrote: Most of the other cross-driver gfx infrastructure (dma_buf, dma_fence) also gets cross posted to all the relevant gfx/memory lists. Doing the same for ION means people won't miss relevant patches. No problem from me, the rate of checkpatch fixups sh

[bug report] staging: rtl8723bs: Fix IEEE80211 authentication algorithm constants.

2018-04-04 Thread Dan Carpenter
[ To be honest, it looks like commit 5befa937e8da: "staging: rtl8723bs: Fix IEEE80211 authentication algorithm constants." was just wrong and should be reverted. The names look similar, yes but *all* three values are different. Quytelda, can you send a revert patch or fix it or something?

Re: [PATCH 02/18] media: staging: atomisp: do some coding style improvements

2018-04-04 Thread Sakari Ailus
On Mon, Mar 26, 2018 at 05:10:35PM -0400, Mauro Carvalho Chehab wrote: > Use make coccicheck in patch mode to do some coding style > improvements. Adjust the results manually. > > Signed-off-by: Mauro Carvalho Chehab Hi Mauro, For patches 2--18, please add: Acked-by: Sakari Ailus -- Sakari

[PATCH] MAINTAINERS: add dri-devel&linaro-mm for Android ION

2018-04-04 Thread Daniel Vetter
Most of the other cross-driver gfx infrastructure (dma_buf, dma_fence) also gets cross posted to all the relevant gfx/memory lists. Doing the same for ION means people won't miss relevant patches. Cc: Laura Abbott Cc: Sumit Semwal Cc: de...@driverdev.osuosl.org Cc: dri-de...@lists.freedesktop.or

[GIT PULL] Staging/IIO driver changes for 4.17-rc1

2018-04-04 Thread Greg KH
The following changes since commit 3eb2ce825ea1ad89d20f7a3b5780df850e4be274: Linux 4.16-rc7 (2018-03-25 12:44:30 -1000) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/ tags/staging-4.17-rc1 for you to fetch changes up to 049b5e2ae30

Re: [PATCH v3 0/9] staging: ks7010: factor out some functions

2018-04-04 Thread Dan Carpenter
Looks good. Thanks! Reviewed-by: Dan Carpenter regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH v3] staging: vt6655: check for memory allocation failures

2018-04-04 Thread Dan Carpenter
On Wed, Apr 04, 2018 at 04:24:10PM +0900, Ji-Hun Kim wrote: > > Since we only partially allocated the > > rd0 ring, device_free_rd0_ring() will crash when we do: > > > > dma_unmap_single(&priv->pcid->dev, rd_info->skb_dma, > > priv->rx_buf_sz, DMA_FROM_DEVI

Re: [PATCH v2 char-misc 1/1] x86/hyperv: Add interrupt handler annotations

2018-04-04 Thread Greg KH
On Tue, Apr 03, 2018 at 01:59:08PM -0700, mhkelle...@gmail.com wrote: > From: Michael Kelley > > Add standard interrupt handler annotations to > hyperv_vector_handler(). > > Signed-off-by: Michael Kelley > --- > Changes in v2: > * Fixed From: line > --- > arch/x86/kernel/cpu/mshyperv.c | 2 +-

Re: [PATCH v3] staging: vt6655: check for memory allocation failures

2018-04-04 Thread Ji-Hun Kim
On Tue, Apr 03, 2018 at 01:40:52PM +0300, Dan Carpenter wrote: > > desc->rd_info = kzalloc(sizeof(*desc->rd_info), GFP_KERNEL); > > - > > + if (!desc->rd_info) { > > + ret = -ENOMEM; > > + goto error; > > + } > > if (!d