STRICTLY AND CONFIDENTIAL:

2013-09-15 Thread Hassan Ullah Amer
Dear Friend, My name is Mr.Hassan Ullah Amer, I am the Bill and Exchange manager here in Bank of Africa, Ouagadougou Burkina Faso, West-Africa. I have a business proposal in the tune of $15.5m, (Fifteen Million Five Hundred Thousand Dollars Only) and after the successful transfer, we shall shar

Re: [PATCH 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-09-15 Thread Kishon Vijay Abraham I
On Thursday 12 September 2013 06:49 PM, Roger Quadros wrote: On 09/02/2013 06:43 PM, Kishon Vijay Abraham I wrote: Adapted dwc3 core to use the Generic PHY Framework. So for init, exit, power_on and power_off the following APIs are used phy_init(), phy_exit(), phy_power_on() and phy_power_off().

Re: [PATCH 3/7] drivers: phy: usb3/pipe3: Adapt pipe3 driver to Generic PHY Framework

2013-09-15 Thread Kishon Vijay Abraham I
On Thursday 12 September 2013 04:49 PM, Roger Quadros wrote: Hi Kishon, On 09/02/2013 06:43 PM, Kishon Vijay Abraham I wrote: Adapted omap-usb3 PHY driver to Generic PHY Framework and moved phy-omap-usb3 driver in drivers/usb/phy to drivers/phy and also renamed the file to phy-omap-pipe3 since

Re: [PATCH 4/7] Documentation: dt bindings: move ..usb/usb-phy.txt to ..phy/omap-phy.txt

2013-09-15 Thread Kishon Vijay Abraham I
On Thursday 12 September 2013 06:53 PM, Roger Quadros wrote: On 09/02/2013 06:43 PM, Kishon Vijay Abraham I wrote: Since now we have a separate folder for phy, move the PHY dt binding documentation of OMAP to that folder. Signed-off-by: Kishon Vijay Abraham I --- .../devicetree/bindings/{usb

Re: [PATCH 7/7] drivers: phy: renamed struct omap_control_usb to struct omap_control_phy

2013-09-15 Thread Kishon Vijay Abraham I
On Thursday 12 September 2013 07:12 PM, Roger Quadros wrote: Hi, On 09/02/2013 06:43 PM, Kishon Vijay Abraham I wrote: renamed struct omap_control_usb to struct omap_control_phy since it can be used to control PHY of USB, SATA and PCIE. Also moved the driver and include files under *phy* and ma

[PATCH 1/1] usb: phy: omap-usb3: Fix return value

2013-09-15 Thread Sachin Kamat
The function returns a pointer. Hence return NULL instead of 0. Signed-off-by: Sachin Kamat --- drivers/usb/phy/phy-omap-usb3.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/phy/phy-omap-usb3.c b/drivers/usb/phy/phy-omap-usb3.c index fc15694..4e8a040 100644 -

[PATCH 2/2] usb: gadget: f_eem: Staticize eem_alloc

2013-09-15 Thread Sachin Kamat
'eem_alloc' is local to this file. Make it static. Signed-off-by: Sachin Kamat --- drivers/usb/gadget/f_eem.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/gadget/f_eem.c b/drivers/usb/gadget/f_eem.c index d00392d..d61c11d 100644 --- a/drivers/usb/gadget/f_ee

[PATCH 1/2] usb: gadget: f_ecm: Staticize ecm_alloc

2013-09-15 Thread Sachin Kamat
'ecm_alloc' is local to this file. Make it static. Signed-off-by: Sachin Kamat --- drivers/usb/gadget/f_ecm.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/gadget/f_ecm.c b/drivers/usb/gadget/f_ecm.c index edab45d..8d9e6f7 100644 --- a/drivers/usb/gadget/f_ec

[PATCH 0/2] Enable PPS reporting for USB serial devices (v3)

2013-09-15 Thread Paul Chavent
Hi. This series enable the PPS reporting for USB serial devices. This third submission improve commit messages, and fix some coding guidelines. The last patch of the v2 will be integrated in an more global reworking of the pl2303 driver. Paul Chavent (2): USB : serial : call handle_dcd_change i

[PATCH 1/1] usb: xhci: Staticize xhci_del_comp_mod_timer

2013-09-15 Thread Sachin Kamat
'xhci_del_comp_mod_timer' is local to this file. Signed-off-by: Sachin Kamat --- drivers/usb/host/xhci-hub.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/usb/host/xhci-hub.c b/drivers/usb/host/xhci-hub.c index fae697e..2b61700 100644 --- a/drivers/usb/host/xhc

[PATCH 1/2] USB : serial : call handle_dcd_change in ftdi driver.

2013-09-15 Thread Paul Chavent
When the device receive a DCD status change, forward the signal to the USB serial system. This way, we can detect, for instance, PPS pulses. Signed-off-by: Paul Chavent --- drivers/usb/serial/ftdi_sio.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/drivers/usb/ser

[PATCH 2/2] USB : serial : invoke dcd_change ldisc's handler.

2013-09-15 Thread Paul Chavent
The DCD pin of the serial port can receive a PPS signal. By calling the port line discipline dcd handle, this patch allow to monitor PPS through USB serial devices. However the performance aren't as good as the uart drivers, so document this point too. Signed-off-by: Paul Chavent --- Documentat