[PATCH v3 5/5] ARM: dts: imx28: changing usb compatible string as only fsl,imx28-usb

2013-10-25 Thread Peter Chen
Due to imx28 usb has special write request, it is not compatible with other imx27 sytle usb controllers. Signed-off-by: Peter Chen peter.c...@freescale.com --- arch/arm/boot/dts/imx28.dtsi |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/imx28.dtsi

[PATCH v3 4/5] usb: doc: chipidea: imx: add compatiable string for imx28 SoC

2013-10-25 Thread Peter Chen
Due to imx28 usb has special write requirement compared to other imx SoCs. Signed-off-by: Peter Chen peter.c...@freescale.com --- Changes for v3: - 4/5, 5/5 are added .../devicetree/bindings/usb/ci13xxx-imx.txt|3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git

[PATCH v3 2/5] usb: chipidea: add freescale imx28 special write register method

2013-10-25 Thread Peter Chen
According to Freescale imx28 Errata, ENGR119653 USB: ARM to USB register error issue, All USB register write operations must use the ARM SWP instruction. So, we implement special hw_write and hw_test_and_clear for imx28. Discussion for it at below:

[PATCH v3 1/5] usb: ehci: add freescale imx28 special write register method

2013-10-25 Thread Peter Chen
According to Freescale imx28 Errata, ENGR119653 USB: ARM to USB register error issue, All USB register write operations must use the ARM SWP instruction. So, we implement a special ehci_write for imx28. Discussion for it at below: http://marc.info/?l=linux-usbm=137996395529294w=2 Signed-off-by:

[PATCH v3 3/5] usb: chipidea: imx: set CI_HDRC_IMX28_WRITE_FIX for imx28

2013-10-25 Thread Peter Chen
Due to imx28 needs ARM swp instruction for writing, we set CI_HDRC_IMX28_WRITE_FIX for imx28. Signed-off-by: Peter Chen peter.c...@freescale.com --- drivers/usb/chipidea/ci_hdrc_imx.c | 32 ++-- 1 files changed, 26 insertions(+), 6 deletions(-) diff --git

Re: [PATCH 2/4] usb: usbtest: support usb2 extension descriptor test

2013-10-25 Thread Huang Rui
On Mon, Oct 21, 2013 at 11:57:32AM -0400, Alan Stern wrote: On Mon, 21 Oct 2013, Huang Rui wrote: + /* +* get generic device-level capability descriptors [9.6.2] +* in USB 3.0 spec +*/ + retval = usb_get_descriptor(udev,

[PATCH][bugfix] usb/gadget: f_mass_storage: use string literal as format in dev_set_name

2013-10-25 Thread Andrzej Pietrasiewicz
Fix commit b27c08c953e994f792a03d9b7cbc5cf3f9844135 where dev_set_name() is used without a string literal as format. Reported-by: Fengguang Wu fengguang...@intel.com Signed-off-by: Andrzej Pietrasiewicz andrze...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

Re: [PATCH v3 5/5] ARM: dts: imx28: changing usb compatible string as only fsl,imx28-usb

2013-10-25 Thread Shawn Guo
On Fri, Oct 25, 2013 at 02:02:23PM +0800, Peter Chen wrote: Due to imx28 usb has special write request, it is not compatible with other imx27 sytle usb controllers. Signed-off-by: Peter Chen peter.c...@freescale.com --- arch/arm/boot/dts/imx28.dtsi |4 ++-- 1 files changed, 2

Read transaction not work for EHCI host controller

2013-10-25 Thread loki
Hi, I used the USB-serial driver option.c to communicate with the GSM modem device through usb, the used host controller is EHCI. The problem is that nothing appear on the screen when type characters after using microcom -s 115200 /dev/ttyUSB3 command to access the ttyUSB3 device node. In

Re: [PATCH v3 5/5] ARM: dts: imx28: changing usb compatible string as only fsl,imx28-usb

2013-10-25 Thread Peter Chen
On Fri, Oct 25, 2013 at 04:23:32PM +0800, Shawn Guo wrote: On Fri, Oct 25, 2013 at 02:02:23PM +0800, Peter Chen wrote: Due to imx28 usb has special write request, it is not compatible with other imx27 sytle usb controllers. Signed-off-by: Peter Chen peter.c...@freescale.com ---

Re: [PATCH v3 5/5] ARM: dts: imx28: changing usb compatible string as only fsl,imx28-usb

2013-10-25 Thread Shawn Guo
On Fri, Oct 25, 2013 at 04:14:30PM +0800, Peter Chen wrote: @@ -1041,7 +1041,7 @@ ranges; usb0: usb@8008 { - compatible = fsl,imx28-usb, fsl,imx27-usb; + compatible = fsl,imx28-usb; You shouldn't need the change as

Re: kernel oops xhci_hcd: xhci_free_dev NULL pointer dereference

2013-10-25 Thread Sarah Sharp
On Thu, Oct 24, 2013 at 02:24:14PM -0700, Praveen Murali wrote: Hi, I have a USB3.0 hard drive enclosure which works perfectly on my desktop (w/ a TI TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller) running Debian 3.10-3-amd64 kernel. But when I plug it on my other setup (with a VIA VL80x

[PATCH] usb: phy: phy-generic: fix return value check in usb_nop_xceiv_register()

2013-10-25 Thread Wei Yongjun
From: Wei Yongjun yongjun_...@trendmicro.com.cn In case of error, the function platform_device_register_simple() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Wei Yongjun yongjun_...@trendmicro.com.cn ---

Re: pl2303 driver regression after commit 61fa8d694b854

2013-10-25 Thread Mika Westerberg
On Thu, Oct 24, 2013 at 03:20:02PM +0200, Frank Schäfer wrote: Ok, this seems to be a HXD (HX rev. D) chip. Could you please validate by checking what Prolifics CheckChipVersion tool toll sais ? It says: This is a PL-2303 HXD chip. It would also be very nice if you could provide a USB-log of

Re: [PATCH][bugfix] usb/gadget: f_mass_storage: use string literal as format in dev_set_name

2013-10-25 Thread Felipe Balbi
On Fri, Oct 25, 2013 at 09:09:27AM +0200, Andrzej Pietrasiewicz wrote: Fix commit b27c08c953e994f792a03d9b7cbc5cf3f9844135 where dev_set_name() is used without a string literal as format. Reported-by: Fengguang Wu fengguang...@intel.com Signed-off-by: Andrzej Pietrasiewicz

Re: [PATCH][bugfix] usb/gadget: f_mass_storage: use string literal as format in dev_set_name

2013-10-25 Thread Sergei Shtylyov
Hello. On 25-10-2013 11:09, Andrzej Pietrasiewicz wrote: Fix commit b27c08c953e994f792a03d9b7cbc5cf3f9844135 where dev_set_name() Please also specify that commit's summary line in parens. is used without a string literal as format. Reported-by: Fengguang Wu fengguang...@intel.com

Re: [PATCH][bugfix] usb/gadget: f_mass_storage: use string literal as format in dev_set_name

2013-10-25 Thread Greg Kroah-Hartman
On Fri, Oct 25, 2013 at 07:16:24AM -0500, Felipe Balbi wrote: On Fri, Oct 25, 2013 at 09:09:27AM +0200, Andrzej Pietrasiewicz wrote: Fix commit b27c08c953e994f792a03d9b7cbc5cf3f9844135 where dev_set_name() is used without a string literal as format. Reported-by: Fengguang Wu

xhci spew with iphone since iOS7

2013-10-25 Thread Dave Jones
Xhci got a lot noisier since I recently updated my phone to the newer version of iOS. Possibly it's related to the new feature where it pops up a dialog on the phone asking if I trust the machine I've plugged into? This is from an 3.12-rc6 kernel: xhci_hcd :00:14.0: Port Status Change Event

Re: pl2303 driver regression after commit 61fa8d694b854

2013-10-25 Thread Frank Schäfer
Am 25.10.2013 12:27, schrieb Mika Westerberg: On Thu, Oct 24, 2013 at 03:20:02PM +0200, Frank Schäfer wrote: Ok, this seems to be a HXD (HX rev. D) chip. Could you please validate by checking what Prolifics CheckChipVersion tool toll sais ? It says: This is a PL-2303 HXD chip. Good, so it's

Re: pl2303 driver regression after commit 61fa8d694b854

2013-10-25 Thread Mika Westerberg
On Fri, Oct 25, 2013 at 03:01:37PM +0200, Frank Schäfer wrote: Tried few other baudrates 115200 and they don't work either. Urgh... has this device ever been working at baud rates 115200 ? I have only used it as a serial console for a device and never tried baud rates higher than 115200

Re: [PATCH][bugfix] usb/gadget: f_mass_storage: use string literal as format in dev_set_name

2013-10-25 Thread Felipe Balbi
hi, On Fri, Oct 25, 2013 at 01:53:46PM +0100, Greg Kroah-Hartman wrote: On Fri, Oct 25, 2013 at 07:16:24AM -0500, Felipe Balbi wrote: On Fri, Oct 25, 2013 at 09:09:27AM +0200, Andrzej Pietrasiewicz wrote: Fix commit b27c08c953e994f792a03d9b7cbc5cf3f9844135 where dev_set_name() is used

Re: [RFC] Does PHY UTMI data width belong to DWC2 or PHY binding?

2013-10-25 Thread Matt Porter
On Wed, Oct 23, 2013 at 09:29:22PM +, Paul Zimmerman wrote: From: Matt Porter [mailto:matt.por...@linaro.org] Sent: Wednesday, October 23, 2013 7:43 AM On Tue, Oct 22, 2013 at 04:38:52PM -0500, Rob Herring wrote: On 10/22/2013 06:25 AM, Matt Porter wrote: On Tue, Oct 22, 2013

Re: [RFC] Does PHY UTMI data width belong to DWC2 or PHY binding?

2013-10-25 Thread Matt Porter
On Thu, Oct 24, 2013 at 10:51:43AM +0530, Kishon Vijay Abraham I wrote: Hi, On Wednesday 23 October 2013 08:12 PM, Matt Porter wrote: On Tue, Oct 22, 2013 at 04:38:52PM -0500, Rob Herring wrote: On 10/22/2013 06:25 AM, Matt Porter wrote: On Tue, Oct 22, 2013 at 12:48:29PM +0200, Matthijs

Re: pl2303 driver regression after commit 61fa8d694b854

2013-10-25 Thread Frank Schäfer
Am 25.10.2013 15:17, schrieb Mika Westerberg: On Fri, Oct 25, 2013 at 03:01:37PM +0200, Frank Schäfer wrote: Tried few other baudrates 115200 and they don't work either. Urgh... has this device ever been working at baud rates 115200 ? I have only used it as a serial console for a device and

[PATCH 0/5] phy: Add new Exynos USB PHY driver

2013-10-25 Thread Kamil Debski
Hi, This is the second version of the patch adding support for USB PHY module of the Exynos series of SoCs by Samsung. The driver is utilising the newly added Generic PHY Framework by Kishon Vijay Abraham I [1]. In addition to the PHY driver this patchset contains: - work in progress support for

[PATCH v2 1/5] phy: Add new Exynos USB PHY driver

2013-10-25 Thread Kamil Debski
Add a new driver for the Exynos USB PHY. The new driver uses the generic PHY framework. The driver includes support for the Exynos 4x10 and 4x12 SoC families. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

[PATCH 5/5] usb: s3c-hsotg: Use the new Exynos USB phy driver with the generic phy framework

2013-10-25 Thread Kamil Debski
Change the used phy driver to the new Exynos USB phy driver that uses the generic phy framework. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/usb/gadget/s3c-hsotg.c | 13 - 1 file changed, 8 insertions(+), 5

[PATCH 4/5] usb: ehci-s5p: Change to use phy provided by the generic phy framework

2013-10-25 Thread Kamil Debski
Change the phy provider used from the old usb phy specific to a new one using the generic phy framework. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/usb/host/ehci-s5p.c | 21 +++-- 1 file changed, 11

[RFC PATCH 2/5] phy: Add WIP Exynos 5250 support to the Exynos USB PHY driver

2013-10-25 Thread Kamil Debski
Add support for Exynos 5250. This is work-in-progress commit. Not for merging. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/phy/Kconfig |7 + drivers/phy/Makefile |1 +

[PATCH 3/5] phy: Add support for S5PV210 to the Exynos USB PHY driver

2013-10-25 Thread Kamil Debski
From: Mateusz Krawczuk m.krawc...@partner.samsung.com Add support for the Samsung's S5PV210 SoC to the Exynos USB PHY driver. Signed-off-by: Mateusz Krawczuk m.krawc...@partner.samsung.com [k.deb...@samsung.com: whitespace cleanup and commit description] Signed-off-by: Kamil Debski

RE: usb mass storage bug

2013-10-25 Thread Alan Stern
On Thu, 24 Oct 2013, Jánosi Zoli wrote: Thank you for your help. I just want to ask a lazy question at last. From now on i always have to compile the kernel by myself to make it work, or there will be some kind of fix for this?  That's up to Felipe. See:

Re: [PATCH 3/7] usb-storage: Don't bind to uas devices if the uas driver is enabled

2013-10-25 Thread Alan Stern
On Fri, 25 Oct 2013, Hans de Goede wrote: Hi, On 10/24/2013 06:32 PM, Alan Stern wrote: On Thu, 24 Oct 2013, Hans de Goede wrote: uas devices have 2 alternative settings on their usb-storage interface, one for usb-storage and one for uas. Using the uas driver is preferred, so if

Re: khubd timed out on ep0in len=0/64 with 3.4 kernel

2013-10-25 Thread Prasad Koya
Resending in plain-text. On Thu, Oct 24, 2013 at 11:06 PM, Prasad Koya prasad.k...@gmail.com wrote: Hi I tried with even unmounting the USB before forcing panic and I see same time out while getting device descriptor. From debugs, I see that the portstatus is 0x501 to start with ie,

Re: [PATCH 2/4] usb: usbtest: support usb2 extension descriptor test

2013-10-25 Thread Alan Stern
On Fri, 25 Oct 2013, Huang Rui wrote: On Mon, Oct 21, 2013 at 11:57:32AM -0400, Alan Stern wrote: On Mon, 21 Oct 2013, Huang Rui wrote: + /* + * get generic device-level capability descriptors [9.6.2] + * in USB 3.0 spec + */ +

Re: xhci spew with iphone since iOS7

2013-10-25 Thread Alan Stern
On Fri, 25 Oct 2013, Dave Jones wrote: Xhci got a lot noisier since I recently updated my phone to the newer version of iOS. Possibly it's related to the new feature where it pops up a dialog on the phone asking if I trust the machine I've plugged into? This is from an 3.12-rc6 kernel:

Re: xhci spew with iphone since iOS7

2013-10-25 Thread Dave Jones
On Fri, Oct 25, 2013 at 10:27:56AM -0400, Alan Stern wrote: On Fri, 25 Oct 2013, Dave Jones wrote: Xhci got a lot noisier since I recently updated my phone to the newer version of iOS. Possibly it's related to the new feature where it pops up a dialog on the phone asking if I

Re: khubd timed out on ep0in len=0/64 with 3.4 kernel

2013-10-25 Thread Alan Stern
On Fri, 25 Oct 2013, Prasad Koya wrote: Resending in plain-text. On Thu, Oct 24, 2013 at 11:06 PM, Prasad Koya prasad.k...@gmail.com wrote: Hi I tried with even unmounting the USB before forcing panic and I see same time out while getting device descriptor. A better test would be to

2.6.35 problem with i.mx28 and cdc-acm

2013-10-25 Thread Robert Hodaszi
Hi, I'm using a Telit modem with an i.mx28 processor. I'm currently running a 2.6.35 kernel on that (I know, it's pretty old, and on an other thread, I'm working on the v3 also). The modem is using the cdc-acm driver. I can reproduce the problem easiest, if I'm running the following loop: /

Re: [RFC PATCH 00/15] rework port power control

2013-10-25 Thread Alan Stern
On Thu, 24 Oct 2013, Dan Williams wrote: Details: 1/ Port power policy needs 'connector' awareness. It is a recipe for unintended device disconnects to turn off a port while leaving its peer active. It is a recipe -- what is it? Do you mean that under the current

Re: [PATCH 3/7] usb-storage: Don't bind to uas devices if the uas driver is enabled

2013-10-25 Thread Hans de Goede
Hi, On 10/25/2013 03:19 PM, Alan Stern wrote: On Fri, 25 Oct 2013, Hans de Goede wrote: Hi, On 10/24/2013 06:32 PM, Alan Stern wrote: On Thu, 24 Oct 2013, Hans de Goede wrote: uas devices have 2 alternative settings on their usb-storage interface, one for usb-storage and one for uas.

Re: [PATCH v2 1/5] phy: Add new Exynos USB PHY driver

2013-10-25 Thread Kishon Vijay Abraham I
Hi, On Friday 25 October 2013 07:45 PM, Kamil Debski wrote: Add a new driver for the Exynos USB PHY. The new driver uses the generic PHY framework. The driver includes support for the Exynos 4x10 and 4x12 SoC families. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by:

Re: [RFC PATCH 2/5] phy: Add WIP Exynos 5250 support to the Exynos USB PHY driver

2013-10-25 Thread Kishon Vijay Abraham I
Hi, On Friday 25 October 2013 07:45 PM, Kamil Debski wrote: Add support for Exynos 5250. This is work-in-progress commit. Not for merging. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/phy/Kconfig |7 +

Re: [PATCH 3/5] phy: Add support for S5PV210 to the Exynos USB PHY driver

2013-10-25 Thread Kishon Vijay Abraham I
Hi, On Friday 25 October 2013 07:45 PM, Kamil Debski wrote: From: Mateusz Krawczuk m.krawc...@partner.samsung.com Add support for the Samsung's S5PV210 SoC to the Exynos USB PHY driver. Signed-off-by: Mateusz Krawczuk m.krawc...@partner.samsung.com [k.deb...@samsung.com: whitespace

Re: [PATCH 4/5] usb: ehci-s5p: Change to use phy provided by the generic phy framework

2013-10-25 Thread Kishon Vijay Abraham I
Hi, On Friday 25 October 2013 07:45 PM, Kamil Debski wrote: Change the phy provider used from the old usb phy specific to a new one using the generic phy framework. looks good :-) Thanks Kishon Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park

Re: [PATCH 5/5] usb: s3c-hsotg: Use the new Exynos USB phy driver with the generic phy framework

2013-10-25 Thread Kishon Vijay Abraham I
On Friday 25 October 2013 07:45 PM, Kamil Debski wrote: Change the used phy driver to the new Exynos USB phy driver that uses the generic phy framework. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

Re: kernel oops xhci_hcd: xhci_free_dev NULL pointer dereference

2013-10-25 Thread Praveen Murali
On 10/25/2013 01:48 AM, Sarah Sharp wrote: On Thu, Oct 24, 2013 at 02:24:14PM -0700, Praveen Murali wrote: Hi, I have a USB3.0 hard drive enclosure which works perfectly on my desktop (w/ a TI TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller) running Debian 3.10-3-amd64 kernel. But when I

Re: 2.6.35 problem with i.mx28 and cdc-acm

2013-10-25 Thread Robert Hodaszi
On 2013-10-25 17:14, Robert Hodaszi wrote: Hi, I'm using a Telit modem with an i.mx28 processor. I'm currently running a 2.6.35 kernel on that (I know, it's pretty old, and on an other thread, I'm working on the v3 also). The modem is using the cdc-acm driver. I can reproduce the problem

[PATCH] usb: phy: phy-rcar-gen2-usb: Fix phy initialization

2013-10-25 Thread Valentine Barshak
Add missing USB UGCTRL2 register offset. Signed-off-by: Valentine Barshak valentine.bars...@cogentembedded.com --- drivers/usb/phy/phy-rcar-gen2-usb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/phy/phy-rcar-gen2-usb.c

Re: [RFC PATCH 00/15] rework port power control

2013-10-25 Thread Dan Williams
On Fri, Oct 25, 2013 at 8:23 AM, Alan Stern st...@rowland.harvard.edu wrote: On Thu, 24 Oct 2013, Dan Williams wrote: Details: 1/ Port power policy needs 'connector' awareness. It is a recipe for unintended device disconnects to turn off a port while leaving its peer active.

[PATCH 1/2] uas: Add the posibilty to blacklist uas driver from using the uas driver

2013-10-25 Thread Hans de Goede
Once we start supporting uas hardware, and as more and more uas devices become available, we will likely start seeing broken devices. This patch prepares for the inevitable need for blacklisting those devices. Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/usb/storage/uas-detect.h

[PATCH 2/2] uas: Add a usbcore.nouas kernel cmdline option

2013-10-25 Thread Hans de Goede
Note this is done through a usbcore module parameter as the option is needed by both the uas and usb-storage drivers. Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/usb/core/usb.c | 12 drivers/usb/storage/uas-detect.h | 3 +++ include/linux/usb.h

[PATCH 0/2] uas: Add the ability to force using usb-storage

2013-10-25 Thread Hans de Goede
Hi All, Here are 2 more patches on top of my patch set of 7 from yesterday. These add an (empty for now) blacklist, as well as a kernel cmdline option, to force using usb-storage with devices which advertise uas support so that we can work around buggy uas devices. Working on this has also led

Re: [RFC PATCH 00/15] rework port power control

2013-10-25 Thread Alan Stern
All right, I'm starting to get the overall picture. This patch set makes a large number of significant changes to important and subtle aspects of the USB stack. It would be a lot easier to discuss in pieces; I can't possibly review the whole series in a reasonable time. And I wish the basic

Re: [PATCH v2 1/5] phy: Add new Exynos USB PHY driver

2013-10-25 Thread Kumar Gala
On Oct 25, 2013, at 9:15 AM, Kamil Debski wrote: Add a new driver for the Exynos USB PHY. The new driver uses the generic PHY framework. The driver includes support for the Exynos 4x10 and 4x12 SoC families. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park

Re: [RFC PATCH 00/15] rework port power control

2013-10-25 Thread Dan Williams
On Fri, Oct 25, 2013 at 2:11 PM, Alan Stern st...@rowland.harvard.edu wrote: All right, I'm starting to get the overall picture. Thanks for the patience I really appreciate it. This patch set makes a large number of significant changes to important and subtle aspects of the USB stack. It

Re: [PATCH 1/1] ax88179_178a: Remove AX_MEDIUM_ALWAYS_ONE bit in AX_MEDIUM_STATUS_MODE register to avoid TX throttling

2013-10-25 Thread David Miller
From: fre...@asix.com.tw Date: Thu, 24 Oct 2013 14:58:25 +0800 From: Freddy Xin fre...@asix.com.tw Remove AX_MEDIUM_ALWAYS_ONE in AX_MEDIUM_STATUS_MODE register. Setting this bit may cause TX throttling in Half-Duplex mode. Signed-off-by: Freddy Xin fre...@asix.com.tw Applied. -- To

Re: [PATCH 4/5] usb: ehci-s5p: Change to use phy provided by the generic phy framework

2013-10-25 Thread Jingoo Han
On Friday, October 25, 2013 11:15 PM, Kamil Debski wrote: Change the phy provider used from the old usb phy specific to a new one using the generic phy framework. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

Re: [PATCH 3/5] phy: Add support for S5PV210 to the Exynos USB PHY driver

2013-10-25 Thread Jingoo Han
On Saturday, October 26, 2013 12:50 AM, Kishon Vijay Abraham I wrote: On Friday 25 October 2013 07:45 PM, Kamil Debski wrote: From: Mateusz Krawczuk m.krawc...@partner.samsung.com Add support for the Samsung's S5PV210 SoC to the Exynos USB PHY driver. Signed-off-by: Mateusz Krawczuk

Do you need a loan from our company @1% interest rate Are you interested? reply us via email (ivor_loanof...@hotmail.co.uk) with your NAME,LOAN AMOUNT NEDDED,AGE,ADDRESS,PHONE NUMBER AND DURATION.

2013-10-25 Thread IVOR PLENTY
-- To unsubscribe from this list: send the line unsubscribe linux-usb in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html