[PATCH] staging/usbip: Change vhci_hcd store_attach() device information message to include speed string

2014-01-22 Thread Shuah Khan
Change vhci_hcd store_attach() routine to include speed string in its device information message. The current call to dev_info() prints out speed number which is the enum number. Change to call usb_speed_string() to print speed string in addition to the number. Signed-off-by: Shuah Khan --- driv

[PATCH] staging/usbip: Add missing speeds to userspace speed_strings array

2014-01-22 Thread Shuah Khan
Add speed strings for usb wireless and 3.0 to speed_strings array. Signed-off-by: Shuah Khan --- drivers/staging/usbip/userspace/libsrc/usbip_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/usbip/userspace/libsrc/usbip_common.c b/drivers/staging/usbip/userspace/li

[PATCH] staging/usbip: Change userspace to use linux include for usb_device_speed enum

2014-01-22 Thread Shuah Khan
Remove usb_device_speed enum define from usbip_common.h and change it to include linux/usb/ch9.h instead. Signed-off-by: Shuah Khan --- drivers/staging/usbip/userspace/libsrc/usbip_common.h | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/staging/usbip/userspace

[staging-next] ion: dummy driver: use ARRAY_SIZE for nr of heaps

2014-01-22 Thread Tomas Winkler
use ARRAY_SIZE to count number of heaps in static array Signed-off-by: Tomas Winkler --- drivers/staging/android/ion/ion_dummy_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/android/ion/ion_dummy_driver.c b/drivers/staging/android/ion/ion_dummy_driv

[PATCH] staging/usbip: Fix vhci_hcd attach failure error message to be informative

2014-01-22 Thread Shuah Khan
When attach fails due to unsupported and/or invalid bus speed, the message vhci_hcd prints out doesn't include any useful information as to what caused the failure. Change the message to be informative and use usb_speed_string() to get the right speed string from usb common. Signed-off-by: Shuah K

Re: [PATCHv5][ 6/8] ARM: dts: mbimx51sd: Add display support.

2014-01-22 Thread Denis Carikli
On 12/05/2013 09:56 PM, Marek Vasut wrote: +++ b/arch/arm/boot/dts/imx51-eukrea-mbimxsd51-baseboard-cmo-qvga.dts [...] +&display { + display-supply = <®_lcd_3v3>; + status = "okay"; The "status = " here should probably be in the board DTS, not in the LCD DTS. The display is optio

Re: [PATCHv6 4/7] staging: imx-drm: Use de-active and pixelclk-active display-timings.

2014-01-22 Thread Dan Carpenter
On Wed, Jan 22, 2014 at 02:48:28PM +0100, Denis Carikli wrote: > If de-active and/or pixelclk-active properties were set in the > display-timings DT node, they were not used. > > Instead the data-enable and the pixel data clock polarity > were hardcoded. > > This change is needed for making the e

[patch] gpu: ion: dereferencing an ERR_PTR

2014-01-22 Thread Dan Carpenter
We dereference "heap->task" before checking if it's an ERR_PTR. Fixes: ea313b5f88ed ('gpu: ion: Also shrink memory cached in the deferred free list') Signed-off-by: Dan Carpenter --- Which email list are android patches going to these days? These didn't go through the staging list. diff --git

[PATCHv6 3/7] staging: imx-drm: Correct BGR666 and the board's dts that use them.

2014-01-22 Thread Denis Carikli
The current BGR666 is not consistent with the other color mapings like BGR24. BGR666 should be in the same byte order than BGR24. Cc: Greg Kroah-Hartman Cc: Gwenhael Goavec-Merou Cc: Eric Bénard Cc: Marek Vasut Cc: Sascha Hauer Cc: Shawn Guo Cc: Thierry Reding Cc: de...@driverdev.osuosl.org

[PATCHv6 5/7] staging: imx-drm: parallel display: add regulator support.

2014-01-22 Thread Denis Carikli
Cc: Alexander Shiyan Cc: Eric Bénard Cc: Greg Kroah-Hartman Cc: Marek Vasut Cc: Sascha Hauer Cc: Shawn Guo Cc: Thierry Reding Cc: driverdev-devel@linuxdriverproject.org Signed-off-by: Denis Carikli --- .../bindings/staging/imx-drm/fsl-imx-drm.txt |1 + drivers/staging/imx-drm/par

[PATCHv6 4/7] staging: imx-drm: Use de-active and pixelclk-active display-timings.

2014-01-22 Thread Denis Carikli
If de-active and/or pixelclk-active properties were set in the display-timings DT node, they were not used. Instead the data-enable and the pixel data clock polarity were hardcoded. This change is needed for making the eukrea-cpuimx51 QVGA display work. Cc: David Airlie Cc: Eric Bénard Cc: G

[PATCHv6 2/7] staging: imx-drm: Add RGB666 support for parallel display.

2014-01-22 Thread Denis Carikli
Cc: Greg Kroah-Hartman Cc: Eric Bénard Cc: Marek Vasut Cc: Sascha Hauer Cc: Shawn Guo Cc: de...@driverdev.osuosl.org Signed-off-by: Denis Carikli --- ChangeLog v5->v6: - Remove people not concerned by this patch from the Cc list. ChangeLog v3->v5: - Use the correct RGB order. ChangeLog v2->