Re: [PATCH net] hyperv: Fix the carrier status setting

2014-02-10 Thread Dan Carpenter
On Sun, Feb 09, 2014 at 05:07:58PM -0800, Haiyang Zhang wrote: > Signed-off-by: Haiyang Zhang > Reviewed-by: K. Y. Srinivasan Changelog sucks. What are the user visible effects of this bug? regards, dan carpenter ___ devel mailing list de...@linuxdr

Re: [PATCH] staging : android : fix checkpatch issues

2014-02-10 Thread Dan Carpenter
On Mon, Feb 10, 2014 at 10:59:14AM +0900, Daeseok Youn wrote: > @@ -1376,14 +1376,14 @@ static int ion_debug_heap_show(struct seq_file *s, > void *unused) > } > } > mutex_unlock(&dev->buffer_lock); > - seq_printf(s, "---

Re: [PATCH] drivers:staging:silicom: Fixed MACRO, Extern, parentheses Coding style warnings and errors

2014-02-10 Thread Dan Carpenter
On Sun, Feb 09, 2014 at 07:05:24PM -0800, Surendra Patil wrote: > Fixed MACRO,Extern and parentheses Coding style warnings and errors - listed > only few > bpctl_mod.c:120: WARNING: externs should be avoided in .c files > bpctl_mod.c:121: WARNING: externs should be avoided in .c files > bpctl_mod.

Re: [PATCH 41/48] staging: comedi: pcl812: use comedi_timeout()

2014-02-10 Thread Ian Abbott
On 2014-02-07 16:23, gre...@linuxfoundation.org wrote: On Fri, Feb 07, 2014 at 04:14:01PM +, Hartley Sweeten wrote: On Friday, February 07, 2014 8:34 AM, Ian Abbott wrote: On 2014-02-06 23:49, H Hartley Sweeten wrote: Use comedi_timeout() to wait for the analog input end-of-conversion. Co

Re: [PATCH] staging : android : fix checkpatch issues

2014-02-10 Thread DaeSeok Youn
Thanks for reviewing. Yes, I just followed by reports of checkpatch.pl. But I don't understand why I can use of seq_puts() in the middle of seq_printf() calls. I have been trying to search why that is not good but I didn't find anything about that. And I saw patches which were already merged simi

[PATCH] staging: drm/imx: remove an unnecessary local variable

2014-02-10 Thread Liu Ying
This patch removes an unnecessary local variable defined in the function imx_drm_driver_unload() so as to fix the following build warning. drivers/staging/imx-drm/imx-drm-core.c: \ In function ‘imx_drm_driver_unload’: drivers/staging/imx-drm/imx-drm-core.c:87:25: \ warning: unused variable ‘imxdrm

Re: [PATCH] staging: drm/imx: remove an unnecessary local variable

2014-02-10 Thread Russell King - ARM Linux
On Mon, Feb 10, 2014 at 06:29:45PM +0800, Liu Ying wrote: > This patch removes an unnecessary local variable defined > in the function imx_drm_driver_unload() so as to fix the > following build warning. > > drivers/staging/imx-drm/imx-drm-core.c: \ > In function ‘imx_drm_driver_unload’: > drivers/

Re: [PATCH] staging: drm/imx: remove an unnecessary local variable

2014-02-10 Thread Russell King - ARM Linux
On Mon, Feb 10, 2014 at 06:42:57PM +0800, Liu Ying wrote: > On 02/10/2014 06:29 PM, Russell King - ARM Linux wrote: > > On Mon, Feb 10, 2014 at 06:29:45PM +0800, Liu Ying wrote: > >> This patch removes an unnecessary local variable defined > >> in the function imx_drm_driver_unload() so as to fix t

Re: [PATCH] staging : android : fix checkpatch issues

2014-02-10 Thread Dan Carpenter
On Mon, Feb 10, 2014 at 07:23:46PM +0900, DaeSeok Youn wrote: > Thanks for reviewing. > > Yes, I just followed by reports of checkpatch.pl. > > But I don't understand why I can use of seq_puts() in the middle of > seq_printf() calls. > I have been trying to search why that is not good but I didn'

Re: [PATCH] staging: drm/imx: remove an unnecessary local variable

2014-02-10 Thread Liu Ying
On 02/10/2014 06:29 PM, Russell King - ARM Linux wrote: > On Mon, Feb 10, 2014 at 06:29:45PM +0800, Liu Ying wrote: >> This patch removes an unnecessary local variable defined >> in the function imx_drm_driver_unload() so as to fix the >> following build warning. >> >> drivers/staging/imx-drm/imx-d

Re: [PATCH] staging : android : fix checkpatch issues

2014-02-10 Thread DaeSeok Youn
OK. I will re-send this patch except replacing seq_printf() with seq_puts(). Your review helped me a lot. Thanks. Daeseok Youn. 2014-02-10 19:52 GMT+09:00 Dan Carpenter : > On Mon, Feb 10, 2014 at 07:23:46PM +0900, DaeSeok Youn wrote: >> Thanks for reviewing. >> >> Yes, I just followed by report

Re: [PATCH v3 1/3] mfd: Add realtek USB card reader driver

2014-02-10 Thread Lee Jones
> From: Roger Tseng > > Realtek USB card reader provides a channel to transfer command or data to > flash > memory cards. This driver exports host instances for mmc and memstick > subsystems > and handles basic works. > > Signed-off-by: Roger Tseng > --- > drivers/mfd/Kconfig | 10

Re: [PATCH] et131x: fix allocation failures

2014-02-10 Thread One Thousand Gnomes
On Fri, 7 Feb 2014 09:15:40 + Mark Einon wrote: > On Wed, Feb 05, 2014 at 09:56:41PM +0800, Zhao, Gang wrote: > > > @@ -2124,7 +2124,11 @@ static int et131x_rx_dma_memory_alloc(struct > > > et131x_adapter *adapter) > > > > > > /* Alloc memory for the lookup table */ > > > rx_ring->fbr[

[PATCH RFC v2 01/35] imx-drm: imx-drm-core: use the crtc drm device for vblank

2014-02-10 Thread Russell King
There are a couple of ways to get at the drm_device for the vblank operations. One of them is via the private imxdrm structure, the other is via the DRM crtc structure, which also stores a pointer. Use the DRM method instead of our own method. Signed-off-by: Russell King --- drivers/staging/imx

[PATCH RFC v2 00/35] Second preview of imx-drm cleanup series

2014-02-10 Thread Russell King - ARM Linux
This is the latest revision of my series cleaning up imx-drm and hopefully getting it ready to be moved out of drivers/staging. This series is updated to v3.14-rc2. Since the last round of patches were posted, the component support has been merged into mainline, and thus dropped from this series.

[PATCH RFC v2 02/35] imx-drm: imx-drm-core: avoid going the long route round for drm_device

2014-02-10 Thread Russell King
We have the drm_device available, so rather than storing it and then using the stored version, us the one we already have available to us. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/d

[PATCH RFC v2 03/35] imx-drm: imx-drm-core: merge imx_drm_crtc_register() into imx_drm_add_crtc()

2014-02-10 Thread Russell King
There's no reason for this to be a separate function; merge the two together. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 33 + 1 file changed, 9 insertions(+), 24 deletions(-) diff --git a/drivers/staging/imx-drm/imx-drm-core.c b/dr

[PATCH RFC v2 06/35] imx-drm: imx-hdmi: clean up setting CSC registers

2014-02-10 Thread Russell King
Rather than manually writing each register sequentially, we can use a loop to reduce the amount of code. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 40 +- 1 file changed, 14 insertions(+), 26 deletions(-) diff --git a/drivers/staging

[PATCH RFC v2 12/35] imx-drm: ipu-v3: more clocking fixes

2014-02-10 Thread Russell King
There's no point in using the clk API for this; we end up having to violate the layering this provides. Signed-off-by: Russell King --- drivers/staging/imx-drm/ipu-v3/ipu-di.c | 328 ++-- 1 file changed, 105 insertions(+), 223 deletions(-) diff --git a/drivers/stagin

[PATCH RFC v2 08/35] imx-drm: imx-hdmi: clean up setting of vp_conf

2014-02-10 Thread Russell King
Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 49 +- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c index c6e2ba479297..a365233ea084 100644 --- a/dr

[PATCH RFC v2 09/35] imx-drm: imx-hdmi: fix CTS/N setup at init time

2014-02-10 Thread Russell King
Many of the variables for the audio clock regenerator (CTS/N) were not initialised in any way. The pixel rate which was being used also wasn't being adjusted at all when the display mode is modified. Get rid of the seaprate 'pixel_clk_rate', and use the stored pixel clock rate instead. Pass this

[PATCH RFC v2 05/35] imx-drm: imx-hdmi: convert HDMI clock settings to tabular form

2014-02-10 Thread Russell King
Rather than having large if() and switch() statements, provide a table to look up the register settings for various clock rates. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 250 ++--- 1 file changed, 95 insertions(+), 155 deletions(-) dif

[PATCH RFC v2 04/35] imx-drm: imx-hdmi: fix compile errors

2014-02-10 Thread Russell King
Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c index f3a1f5e2e492..107e73788030 100644 --- a/drivers/staging/imx-drm/

[PATCH RFC v2 11/35] imx-drm: ipu-v3: don't use clk_round_rate() before clk_set_rate()

2014-02-10 Thread Russell King
This is nonsense; clk_round_rate() is just clk_set_rate() without the side effect of changing the hardware. Signed-off-by: Russell King --- drivers/staging/imx-drm/ipu-v3/ipu-di.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/staging/imx-drm/ipu-v3/ipu

[PATCH RFC v2 10/35] imx-drm: ipu-v3: more inteligent DI clock selection

2014-02-10 Thread Russell King
The DI clock selection was very rudimentary: it would statically use either the IPU internal clock or the DI external clock depending on which "encoder" was being used. In the case of HDMI, it would always use the IPU clock. Moreover, using the IPU clock resulted in fractional divisors, which are

[PATCH RFC v2 07/35] imx-drm: imx-hdmi: provide register modification function

2014-02-10 Thread Russell King
There are a load of read-modify-write patterns to change bitfields in various registers in this driver; provide a helper to perform this manipulation. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 182 + 1 file changed, 65 insertions(+),

[PATCH RFC v2 15/35] imx-drm: imx-drm-core: sanitise imx_drm_encoder_get_mux_id()

2014-02-10 Thread Russell King
Address the following issues: - imx_drm_encoder_get_mux_id() searches the CRTC list for the matching CRTC, and returns the position within this list as the MUX programming value for encoders. This is sub-optimal for two reasons: 1. It relies upon the CRTC list not changing during the lifetim

[PATCH RFC v2 16/35] imx-drm: imx-drm-core: use array instead of list for CRTCs

2014-02-10 Thread Russell King
The DRM core indexes vblank by number, so there's little point maintaining a list, and have to scan the list to find the appropriate structure. Instead, use an array of pointers to the CRTCs. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 57 ++-

[PATCH RFC v2 18/35] imx-drm: simplify setup of panel format

2014-02-10 Thread Russell King
The encoder format passed into imx_drm_crtc_panel_format*() is the encoder format used for DRM in most cases; the HDMI encoder sets this to none, but this is incorrect, it should be TMDS. Since this is the case, we can pass the drm_encoder structure directly into this function and use the supplied

[PATCH RFC v2 17/35] imx-drm: provide common connector mode validation function

2014-02-10 Thread Russell King
Provide a common connector mode validation function, which can be used to limit the available modes according to other components in the system. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 7 +++ drivers/staging/imx-drm/imx-drm.h | 3 +++ drivers/sta

[PATCH RFC v2 20/35] imx-drm: imx-hdmi: convert to a component device

2014-02-10 Thread Russell King
Convert imx-hdmi to be a component device; it will bind and unbind at the appropriate moment in the main DRM driver's functions. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 41 +++--- 1 file changed, 29 insertions(+), 12 deletions(-) diff

[PATCH RFC v2 21/35] imx-drm: delay publishing sysfs connector entries

2014-02-10 Thread Russell King
Delay publishing sysfs connector entries until all components have initialised. This reduces the probability of generating false hotplug events when we're uncertain whether the driver can fully initialise. This also pulls that code out of the individual imx-drm connector drivers. Signed-off-by: R

[PATCH RFC v2 25/35] imx-drm: imx-drm-core: provide helper function to parse possible crtcs

2014-02-10 Thread Russell King
Provide a helper function to parse possible crtcs before the encoder is registered. The crtc mask is derived from the position of the CRTCs registered in the drm_device. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 66 ++ drivers/stagi

[PATCH RFC v2 27/35] imx-drm: parallel-display,imx-tve,imx-ldb: initialise drm components directly

2014-02-10 Thread Russell King
Now that our bind function is only ever called during the main DRM driver ->load callback, we don't need to have the imx_drm_connector or imx_drm_encoder abstractions anymore. So let's get rid of it, and move the DRM connector and encoder setup into the connector support files. Signed-off-by: Rus

[PATCH RFC v2 26/35] imx-drm: imx-drm-core: provide common connector and encoder cleanup functions

2014-02-10 Thread Russell King
Provide two helper functions to assist with cleaning up imx-drm connectors and encoders. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 13 + drivers/staging/imx-drm/imx-drm.h | 3 +++ 2 files changed, 16 insertions(+) diff --git a/drivers/staging/imx

[PATCH RFC v2 24/35] imx-drm: use supplied drm_device where possible

2014-02-10 Thread Russell King
The component helper provides us the drm_device which is being registered. Rather than having to reference a global in imx-drm-core, use this to get the imxdrm device, and also use it to register the CRTC against. This means we never have CRTCs/encoders/connectors without the drivers private data

[PATCH RFC v2 19/35] imx-drm: convert to componentised device support

2014-02-10 Thread Russell King
Use the componentised device support for imx-drm. This requires all the sub-components and the master device to register with the component device support. Signed-off-by: Russell King --- arch/arm/boot/dts/imx51-babbage.dts| 10 ++- arch/arm/boot/dts/imx53-m53evk.dts | 8 ++-

[PATCH RFC v2 22/35] imx-drm: remove separate imx-fbdev

2014-02-10 Thread Russell King
Now that we know when the components of the imx-drm subsystem will be initialised, we can move the fbdev helper initialisation and teardown into imx-drm-core. This gives us the required ordering that DRM wants in both driver load and unload methods. We can also stop exporting the imx_drm_device_g

[PATCH RFC v2 23/35] imx-drm: remove imx-fb.c

2014-02-10 Thread Russell King
imx-fb.c doesn't need to be separate from imx-drm-core.c - all it is doing is setting up the minimum and maximum sizes of the scanout buffers, and setting up the mode_config function pointers. Move the contents into imx-drm-core.c and kill this file. Signed-off-by: Russell King --- drivers/stag

[PATCH RFC v2 28/35] imx-drm: imx-hdmi: initialise drm components directly

2014-02-10 Thread Russell King
Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-hdmi.c | 56 ++ 1 file changed, 15 insertions(+), 41 deletions(-) diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c index 7086ea66490f..c5e57ac07243 100644 --- a/dr

[PATCH RFC v2 34/35] imx-drm: imx-drm-core: add core hotplug connector support

2014-02-10 Thread Russell King
Add core imx-drm support for hotplug connector support. We need to setup the poll helper after we've setup the connectors; the helper scans the connectors to determine their capabilities. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 21 + 1 file c

[PATCH RFC v2 29/35] imx-drm: imx-drm-core: remove imx_drm_connector and imx_drm_encoder code

2014-02-10 Thread Russell King
The core imx_drm_connector and imx_drm_encoder code is no longer required - the connectors and encoders are all using the component support, so we can remove this. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 371 + drivers/staging/imx-

[PATCH RFC v2 33/35] imx-drm: imx-drm-core: various cleanups

2014-02-10 Thread Russell King
Various cleanups are possible after the previous round of changes; these have no real functional bearing other than tidying up the code. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 47 -- drivers/staging/imx-drm/imx-drm.h | 5 ++-

[PATCH RFC v2 31/35] imx-drm: imx-drm-core: kill off mutex

2014-02-10 Thread Russell King
This mutex doesn't protect anything anymore; get rid of it. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 26 +++--- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/drivers/staging/imx-drm/imx-drm-core.c b/drivers/staging/imx-drm/imx

[PATCH RFC v2 32/35] imx-drm: imx-drm-core: move allocation of imxdrm device to driver load function

2014-02-10 Thread Russell King
It is now no longer necessary to keep this structure around; we can allocate it upon DRM driver load and destroy it thereafter without affecting the other components now. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c | 47 +- 1 file change

[PATCH RFC v2 35/35] imx-drm: imx-hdmi: add hotplug support to HDMI component

2014-02-10 Thread Russell King
Add hotplug support. We have to make the interrupt handler threaded so we can call drm_helper_hpd_irq_event(). Keeping in mind that we will want to share the interrupt with other HDMI interface drivers (eg, audio and CEC) put the groundwork in now for that, rather than just using IRQF_ONESHOT. A

[PATCH RFC v2 30/35] imx-drm: imx-drm-core: get rid of drm_mode_group_init_legacy_group()

2014-02-10 Thread Russell King
Since we're now operating like a conventional DRM driver, doing all the initialisation within the driver's ->load callback, we don't need to mess around with the mode groups - we can rely on the one in the DRM platform code. Signed-off-by: Russell King --- drivers/staging/imx-drm/imx-drm-core.c

Re: [PATCH v3 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-10 Thread Thierry Reding
On Fri, Feb 07, 2014 at 04:55:00PM +0100, Jean-Francois Moine wrote: > Some simple components don't need to do any specific action on > bind to / unbind from a master component. > > This patch permits such components to omit the bind/unbind > operations. > > Signed-off-by: Jean-Francois Moine >

Re: [PATCH] Staging: comedi: fix memory leak in comedi_bond.c

2014-02-10 Thread Ian Abbott
On 2014-02-08 05:02, Chase Southwood wrote: We allocate bdev and then krealloc the devs pointer in order to add bdev at the end of the devpriv->devs array list. But if for some reason this krealloc fails, we need to free bdev before returning an error otherwise this memory is leaked. Signed-off

Re: [PATCH v3 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-10 Thread Russell King - ARM Linux
On Mon, Feb 10, 2014 at 01:53:08PM +0100, Thierry Reding wrote: > On Fri, Feb 07, 2014 at 04:55:00PM +0100, Jean-Francois Moine wrote: > > Some simple components don't need to do any specific action on > > bind to / unbind from a master component. > > > > This patch permits such components to omit

Re: [PATCH net] hyperv: Fix the carrier status setting

2014-02-10 Thread Sergei Shtylyov
Hello. On 10-02-2014 5:07, Haiyang Zhang wrote: Signed-off-by: Haiyang Zhang Reviewed-by: K. Y. Srinivasan --- drivers/net/hyperv/netvsc_drv.c | 24 +++- 1 files changed, 15 insertions(+), 9 deletions(-) diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hy

Re: [PATCH] [media] v4l: omap4iss: Remove VIDEO_OMAP4_DEBUG

2014-02-10 Thread Laurent Pinchart
Hi Paul, Thank you for the patch. On Sunday 09 February 2014 16:09:37 Paul Bolle wrote: > Commit d632dfefd36f ("[media] v4l: omap4iss: Add support for OMAP4 > camera interface - Build system") added a Kconfig entry for > VIDEO_OMAP4_DEBUG. But nothing uses that symbol. > > This entry was apparen

Re: [PATCH] staging : ion : Fix some checkpatch warnings and an error

2014-02-10 Thread Joe Perches
On Mon, 2014-02-10 at 14:56 +0900, Daeseok Youn wrote: > Hello. > diff --git a/drivers/staging/android/ion/ion_priv.h > b/drivers/staging/android/ion/ion_priv.h [] > - struct sg_table *(*map_dma) (struct ion_heap *heap, > + struct sg_table * (*map_dma)(struct ion_heap *heap, The message

Re: [PATCH v3 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-10 Thread Jean-Francois Moine
On Mon, 10 Feb 2014 13:12:33 + Russell King - ARM Linux wrote: > I've NAK'd these patches already - I believe they're based on a > mis-understanding of how this should be used. I believe Jean-Francois > has only looked at the core, rather than looking at the imx-drm example > it was posted w

Re: [PATCH] [media] v4l: omap4iss: Remove VIDEO_OMAP4_DEBUG

2014-02-10 Thread Paul Bolle
Laurent, On Mon, 2014-02-10 at 15:13 +0100, Laurent Pinchart wrote: > On Sunday 09 February 2014 16:09:37 Paul Bolle wrote: > > Commit d632dfefd36f ("[media] v4l: omap4iss: Add support for OMAP4 > > camera interface - Build system") added a Kconfig entry for > > VIDEO_OMAP4_DEBUG. But nothing uses

Re: [PATCH v3 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-10 Thread Russell King - ARM Linux
On Mon, Feb 10, 2014 at 03:35:51PM +0100, Jean-Francois Moine wrote: > On Mon, 10 Feb 2014 13:12:33 + > Russell King - ARM Linux wrote: > > > I've NAK'd these patches already - I believe they're based on a > > mis-understanding of how this should be used. I believe Jean-Francois > > has only

Re: [PATCH RFC v2 00/35] Second preview of imx-drm cleanup series

2014-02-10 Thread Philipp Zabel
Am Montag, den 10.02.2014, 12:28 + schrieb Russell King - ARM Linux: > This is the latest revision of my series cleaning up imx-drm and > hopefully getting it ready to be moved out of drivers/staging. > This series is updated to v3.14-rc2. > > Since the last round of patches were posted, the c

Re: [PATCH RFC v2 00/35] Second preview of imx-drm cleanup series

2014-02-10 Thread Russell King - ARM Linux
On Mon, Feb 10, 2014 at 04:12:19PM +0100, Philipp Zabel wrote: > Am Montag, den 10.02.2014, 12:28 + schrieb Russell King - ARM Linux: > > This is the latest revision of my series cleaning up imx-drm and > > hopefully getting it ready to be moved out of drivers/staging. > > This series is update

Re: [PATCH] [media] v4l: omap4iss: Remove VIDEO_OMAP4_DEBUG

2014-02-10 Thread Laurent Pinchart
Hi Paul, On Monday 10 February 2014 16:13:51 Paul Bolle wrote: > On Mon, 2014-02-10 at 15:13 +0100, Laurent Pinchart wrote: > > On Sunday 09 February 2014 16:09:37 Paul Bolle wrote: > > > Commit d632dfefd36f ("[media] v4l: omap4iss: Add support for OMAP4 > > > camera interface - Build system") add

Re: [PATCH RFC v2 00/35] Second preview of imx-drm cleanup series

2014-02-10 Thread Jean-Francois Moine
On Mon, 10 Feb 2014 15:18:21 + Russell King - ARM Linux wrote: > Now, mind explaining what "v4l2 style device tree bindings" means? I've > no idea since I'm relatively new to DT. Documentation/devicetree/bindings/media/video-interfaces.txt For the Cubox, I have: tda998x: hdmi-enco

Re: [RFC PATCH 2/3] staging: imx-drm-core: Use graph to find connection between crtc and encoder

2014-02-10 Thread Russell King - ARM Linux
On Mon, Jan 06, 2014 at 03:52:01PM +0100, Philipp Zabel wrote: > @@ -438,24 +453,21 @@ int imx_drm_encoder_parse_of(struct drm_device *drm, > struct drm_encoder *encoder, struct device_node *np) > { > struct imx_drm_device *imxdrm = drm->dev_private; > + struct device_node *ep, *la

[PATCH net,v2] hyperv: Fix the carrier status setting

2014-02-10 Thread Haiyang Zhang
Without this patch, the "cat /sys/class/net/ethN/operstate" shows "unknown", and "ethtool ethN" shows "Link detected: yes", when VM boots up with or without vNIC connected. This patch fixed the problem. Signed-off-by: Haiyang Zhang Reviewed-by: K. Y. Srinivasan --- drivers/net/hyperv/netvsc_dr

RE: [PATCH net] hyperv: Fix the carrier status setting

2014-02-10 Thread Haiyang Zhang
> -Original Message- > From: Sergei Shtylyov [mailto:sergei.shtyl...@cogentembedded.com] > Sent: Monday, February 10, 2014 8:29 AM > To: Haiyang Zhang; da...@davemloft.net; net...@vger.kernel.org > Cc: KY Srinivasan; o...@aepfle.de; jasow...@redhat.com; linux- > ker...@vger.kernel.org; dr

Re: [PATCH RFC v2 00/35] Second preview of imx-drm cleanup series

2014-02-10 Thread Russell King - ARM Linux
On Mon, Feb 10, 2014 at 06:37:26PM +0100, Philipp Zabel wrote: > I'd like all of them to go through, too. If you don't want to have the DT > changes integrated, I'd appreciate if you could have a look at my > patches on top of your series and possibly append them to your > series or let me synchro

RE: [PATCH net] hyperv: Fix the carrier status setting

2014-02-10 Thread Haiyang Zhang
> -Original Message- > From: Dan Carpenter [mailto:dan.carpen...@oracle.com] > Sent: Monday, February 10, 2014 4:04 AM > To: Haiyang Zhang > Cc: da...@davemloft.net; net...@vger.kernel.org; o...@aepfle.de; > jasow...@redhat.com; driverdev-devel@linuxdriverproject.org; linux- > ker...@vger

[PATCH]staging: slicoss: Fix possible reuse of freed memory in timer function

2014-02-10 Thread Kirill Tkhai
Do not call kfree() till timer function is finished. [This was found using grep. Compiled tested only] Signed-off-by: Kirill Tkhai CC: Joe Perches CC: Greg Kroah-Hartman --- drivers/staging/slicoss/slicoss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/s

[PATCH 10/47 v2] staging: comedi: pcmad: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcmad.c | 21 ++--- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/drivers/staging/com

[PATCH 19/47 v2] staging: comedi: das08: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/das08.c | 26 ++ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/drivers/staging

[PATCH 14/47 v2] staging: comedi: aio_aio12_8: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/aio_aio12_8.c | 30 ++-- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/driver

[PATCH 02/47 v2] staging: comedi: skel: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Since this is the sample skeleton driver, add comments about how the callback function works with comedi_timeout(). Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/sk

[PATCH 16/47 v2] staging: comedi: cb_pcidas: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/cb_pcidas.c | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/drivers/st

[PATCH 33/47 v2] staging: comedi: dyna_pci10xx: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Also, remove some unnecessary comments. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/dyna_pci10xx.c | 40 --- 1 file changed, 24 insertions

[PATCH 25/47 v2] staging: comedi: addi_apci_3xx: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input and output end-of- conversions. This prevents a deadlock condition that could occur by providing a timeout in case the end-of-conversion does not happen. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/stagin

[PATCH 20/47 v2] staging: comedi: das16m1: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/das16m1.c | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/drivers/stag

[PATCH 07/47 v2] staging: comedi: mf6x4: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/mf6x4.c | 23 ++- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/drivers/staging/c

[PATCH 01/47 v2] staging: comedi: introduce comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Introduce a comedi core helper function to handle the boilerplate needed by the drivers to busy- wait for a condition to occur. Typically this condition is the analog input/output end-of-conversion used with the comedi (*insn_read) and (*insn_write) operations. To use this function, the drivers ju

[PATCH 08/47 v2] staging: comedi: ni_labpc: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/ni_labpc.c | 21 + 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/drivers/staging/c

[PATCH 29/47 v2] staging: comedi: adl_pci9118: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/adl_pci9118.c | 34 ++-- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/driver

[PATCH 03/47 v2] staging: comedi: adl_pci6208x: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog output end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/adl_pci6208.c | 22 ++ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/drivers/sta

[PATCH 09/47 v2] staging: comedi: pcl711: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcl711.c | 21 ++--- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/drivers/staging/co

[PATCH 21/47 v2] staging: comedi: dt2811: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/dt2811.c | 23 --- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/drivers/staging/c

[PATCH 17/47 v2] staging: comedi: cb_pcidas64: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/cb_pcidas64.c | 44 +--- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/driver

[PATCH 06/47 v2] staging: comedi: ii_pci20kc: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/ii_pci20kc.c | 20 +--- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/drivers/staging/

[PATCH 23/47 v2] staging: comedi: mpc624: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/mpc624.c | 28 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/drivers/sta

[PATCH 00/47 v2] staging: comedi: cleanup the "timeout" loops

2014-02-10 Thread H Hartley Sweeten
Many of the comedi drivers implement a "timeout" loop of some sort in the analog input (*insn_read) or analog output (*insn_write) functions. Some of these are just crazy "loop this many times" for some status to change. There are a couple that could actually deadlock the system if the status does

[PATCH 31/47 v2] staging: comedi: adq12b: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. This also fixes a possible bug where invalid data is returned if the conversion did not complete. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/adq12b.c | 31 ++

[PATCH 35/47 v2] staging: comedi: multiq3: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/multiq3.c | 38 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/driver

[PATCH 12/47 v2] staging: comedi: dt2815: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog output end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/dt2815.c | 39 ++--- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/drive

[PATCH 38/47 v2] staging: comedi: s626: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. This prevents a deadlock condition that could occur by providing a timeout in case the end-of-conversion does not happen. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/driv

[PATCH 28/47 v2] staging: comedi: adl_pci9111: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/adl_pci9111.c | 36 +++- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/driver

[PATCH 11/47 v2] staging: comedi: pcmmio: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input and output end-of- conversions. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcmmio.c | 42 +++-- 1 file changed, 24 insertions(+), 18 deletions(-) diff -

[PATCH 04/47 v2] staging: comedi: das16: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/das16.c | 19 +-- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/drivers/staging/comedi

[PATCH 13/47 v2] staging: comedi: rti800: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Change the errno returned for an overrun from -EIO to -EOVERFLOW. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/rti800.c | 29 + 1 file

[PATCH 36/47 v2] staging: comedi: ni_daq_700: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/ni_daq_700.c | 53 ++--- 1 file changed, 33 insertions(+), 20 deletions(-) diff --git a/driver

[PATCH 30/47 v2] staging: comedi: adv_pci1710: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/adv_pci1710.c | 38 +--- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/driver

[PATCH 26/47 v2] staging: comedi: ni_at_a2150: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/ni_at_a2150.c | 42 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/driver

[PATCH 22/47 v2] staging: comedi: me_daq: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/me_daq.c | 35 ++--- 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/driver

[PATCH 15/47 v2] staging: comedi: cb_das16_cs: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/cb_das16_cs.c | 26 ++ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/drivers/s

[PATCH 24/47 v2] staging: comedi: s526: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input end-of-conversion. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/s526.c | 32 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/drivers/s

[PATCH 34/47 v2] staging: comedi: icp_multi: use comedi_timeout()

2014-02-10 Thread H Hartley Sweeten
Use comedi_timeout() to wait for the analog input and output end-of- conversion. Use break to exit the loop when a timeout occurs during the analog input read so that common code can be used to disable the device. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Cc: Greg Kroah-Hartman --- driv

  1   2   >