Linux on ARM based TI OMAP SoCs
 help / color / mirror / Atom feed
From: Michael Grzeschik <mgr@pengutronix.de>
To: Afzal Mohammed <afzal@ti.com>
Cc: Felipe Balbi <balbi@ti.com>,
	linux-usb@vger.kernel.org, linux-omap@vger.kernel.org,
	Ravi Babu <ravibabu@ti.com>
Subject: Re: [PATCH 1/3] usb: otg: nop: add dt support
Date: Sun, 27 Jan 2013 22:40:05 +0100	[thread overview]
Message-ID: <20130127214005.GA18800@pengutronix.de> (raw)
In-Reply-To: <a1dd07e020850703ed5294db176ea1298d69a4ed.1348722156.git.afzal@ti.com>

Hi,

On Thu, Sep 27, 2012 at 11:15:05AM +0530, Afzal Mohammed wrote:
> From: "B, Ravi" <ravibabu@ti.com>
> 
> Added device tree support for nop transceiver driver and updated the
> Documentation with device tree binding information for am33xx platform.
> 
> Signed-off-by: Ravi Babu <ravibabu@ti.com>
> Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
> Signed-off-by: Afzal Mohammed <afzal@ti.com>
> ---
> 
> Hi,
> 
> This series is made over over Balbi's usb "master" branch.
> 
> It applies cleanly over "musb" branch too.
> 
> Regards
> Afzal
> 
>  Documentation/devicetree/bindings/usb/am33xx-usb.txt |  3 +++
>  drivers/usb/otg/nop-usb-xceiv.c                      | 10 ++++++++++
>  2 files changed, 13 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/usb/am33xx-usb.txt b/Documentation/devicetree/bindings/usb/am33xx-usb.txt
> index ca8fa56..9782585 100644
> --- a/Documentation/devicetree/bindings/usb/am33xx-usb.txt
> +++ b/Documentation/devicetree/bindings/usb/am33xx-usb.txt
> @@ -12,3 +12,6 @@ AM33XX MUSB GLUE
>     represents PERIPHERAL.
>   - power : Should be "250". This signifies the controller can supply upto
>     500mA when operating in host mode.
> +
> +NOP USB PHY
> + - compatible : Should be "nop-xceiv-usb"
> diff --git a/drivers/usb/otg/nop-usb-xceiv.c b/drivers/usb/otg/nop-usb-xceiv.c
> index e52e35e..64bfbe4 100644
> --- a/drivers/usb/otg/nop-usb-xceiv.c
> +++ b/drivers/usb/otg/nop-usb-xceiv.c
> @@ -27,6 +27,7 @@
>   */
>  
>  #include <linux/module.h>
> +#include <linux/of.h>
>  #include <linux/platform_device.h>
>  #include <linux/dma-mapping.h>
>  #include <linux/usb/otg.h>
> @@ -154,12 +155,21 @@ static int __devexit nop_usb_xceiv_remove(struct platform_device *pdev)
>  	return 0;
>  }
>  
> +#ifdef CONFIG_OF
> +static const struct of_device_id nop_xceiv_id_table[] = {
> +	{ .compatible = "nop-xceiv-usb" },
> +	{},
> +};
> +MODULE_DEVICE_TABLE(of, nop_xceiv_id_table);
> +#endif
> +
>  static struct platform_driver nop_usb_xceiv_driver = {
>  	.probe		= nop_usb_xceiv_probe,
>  	.remove		= __devexit_p(nop_usb_xceiv_remove),
>  	.driver		= {
>  		.name	= "nop_usb_xceiv",
>  		.owner	= THIS_MODULE,
> +		.of_match_table = of_match_ptr(nop_xceiv_id_table),
>  	},
>  };
>  
> -- 
> 1.7.12
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

What happend to that patch? It did not show up in any new series. Is it
queued anywhere?

Regards,
Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

  parent reply	other threads:[~2013-01-27 21:40 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-27  5:45 [PATCH 1/3] usb: otg: nop: add dt support Afzal Mohammed
2012-09-27  5:43 ` [PATCH 2/3] usb: musb: dsps: remove nop unregister Afzal Mohammed
2012-09-27  5:43 ` [PATCH 3/3] usb: musb: dsps: document dt bindings properly Afzal Mohammed
     [not found] ` <a1dd07e020850703ed5294db176ea1298d69a4ed.1348722156.git.afzal-l0cyMroinI0@public.gmane.org>
2012-10-31 14:28   ` [PATCH 1/3] usb: otg: nop: add dt support Afzal Mohammed
2013-01-27 21:40 ` Michael Grzeschik [this message]
2013-01-28 10:04   ` Mohammed, Afzal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130127214005.GA18800@pengutronix.de \
    --to=mgr@pengutronix.de \
    --cc=afzal@ti.com \
    --cc=balbi@ti.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=ravibabu@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox