[PATCH 3/4] staging: xillybus: Register's address offset notation update

2014-07-05 Thread Eli Billauer
In iowrite32() calls, the address of registers was expressed as e.g. ep-registers[fpga_msg_ctrl_reg]. This changes to the more common format e.g. ep-registers + fpga_msg_ctrl_reg. There is no functional change. Signed-off-by: Eli Billauer eli.billa...@gmail.com ---

[PATCH 1/4] staging: xillybus: Add sanity check in interrupt handler

2014-07-05 Thread Eli Billauer
Data arriving from the hardware is verified prior to its use. The lack of this check has never been reported to cause a problem, but it's necessary nevertheless. Signed-off-by: Eli Billauer eli.billa...@gmail.com --- drivers/staging/xillybus/xillybus_core.c |6 ++ 1 files changed, 6

[PATCH 2/4] staging: xillybus: Reorganizing xilly_setupchannels()

2014-07-05 Thread Eli Billauer
Duplicate code in this function was moved into a new function, xilly_get_dma_buffers(). There is no change in functionality. Signed-off-by: Eli Billauer eli.billa...@gmail.com --- drivers/staging/xillybus/xillybus_core.c | 345 -- 1 files changed, 138 insertions(+),

[PATCH 4/4] staging: xillybus: Remove sparse error on IS_ERR()

2014-07-05 Thread Eli Billauer
IS_ERR() expects a non-__iomem pointer. Signed-off-by: Eli Billauer eli.billa...@gmail.com --- drivers/staging/xillybus/xillybus_of.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/xillybus/xillybus_of.c b/drivers/staging/xillybus/xillybus_of.c index

[GIT PULL] component fix

2014-07-05 Thread Russell King
Greg, Please incorporate a fix for the component helper, which can be found at: git://ftp.arm.linux.org.uk/~rmk/linux-arm.git component-for-driver with SHA1 b509cc802239a8b5ba7d1d2cc5adfb9d984b7ed8. This fixes a bug reported by Sachin Kamat found with Exynos DRM. This will update the

[GIT PULL] imx-drm update for component changes

2014-07-05 Thread Russell King
Greg, Please incorporate the imx-drm update for component changes, which can be found at: git://ftp.arm.linux.org.uk/~rmk/linux-arm.git component-for-staging with SHA1 9e5e2ffda320bacb761e4812e3ef7a7decd592a9. This updates imx-drm for the recently merged updates to the component helper, and

Re: [PATCH] staging: nvec: remove unneccessary 'else' after 'return'statement

2014-07-05 Thread Marc Dietrich
On Fri, 4 Jul 2014 22:59:41 +0200 Julian Andres Klode j...@jak-linux.org wrote: On Fri, Jul 04, 2014 at 09:57:50PM +0200, Pawel Lebioda wrote: Hi, This patch fixes the following warning reported by checkpatch.pl: WARNING: else is not generally useful after a break or return #235:

Re: Status of RMI4 drivers?

2014-07-05 Thread Alan Cox
On Fri, 2014-07-04 at 21:48 +0300, Kristina Martšenko wrote: Hi, I'm going over some older drivers in the staging tree and wanted to ask about cptm1217 and ste_rmi4. They've been in staging for three and a half years now, waiting for the upstream Synaptics RMI4 drivers. From what I

[PATCH 1/2] staging: nvec: remove unnecessary 'else' after 'return' statement

2014-07-05 Thread Pawel Lebioda
Fix the following warning reported by checkpatch.pl: WARNING: else is not generally useful after a break or return 235: FILE: drivers/staging/nvec/nvec.c:235 Signed-off-by: Pawel Lebioda pawel.lebiod...@gmail.com --- drivers/staging/nvec/nvec.c | 3 +-- 1 file changed, 1 insertion(+), 2

[PATCH 0/2] staging: nvec: fix some coding style problems

2014-07-05 Thread Pawel Lebioda
The following patches fix some warnings reported by checkpatch.pl Pawel Lebioda (2): staging: nvec: remove unnecessary 'else' after 'return' statement staging: nvec: remove unneccessary 'out of memory' message drivers/staging/nvec/nvec.c | 8 +++- 1 file changed, 3 insertions(+), 5

[PATCH 2/2] staging: nvec: remove unneccessary 'out of memory' message

2014-07-05 Thread Pawel Lebioda
Fix the following warning reported by checkpatch.pl: WARNING: Possible unnecessary 'out of memory' message 811: FILE: drivers/staging/nvec/nvec.c:811 Signed-off-by: Pawel Lebioda pawel.lebiod...@gmail.com --- drivers/staging/nvec/nvec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)

Re: Status of RMI4 drivers?

2014-07-05 Thread Greg KH
On Sat, Jul 05, 2014 at 04:37:37PM +0100, Alan Cox wrote: On Fri, 2014-07-04 at 21:48 +0300, Kristina Martšenko wrote: Hi, I'm going over some older drivers in the staging tree and wanted to ask about cptm1217 and ste_rmi4. They've been in staging for three and a half years now,