* [PATCH 1/1] usb: fix driver name
@ 2012-01-14 14:48 Jean-Christophe PLAGNIOL-VILLARD
2012-01-16 8:35 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-01-14 14:48 UTC (permalink / raw)
To: barebox
use the usb_driver name
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
drivers/usb/core/usb.c | 1 +
drivers/usb/storage/usb.c | 1 -
2 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
index 7039a2c..f10bcad 100644
--- a/drivers/usb/core/usb.c
+++ b/drivers/usb/core/usb.c
@@ -1275,6 +1275,7 @@ static int usb_hub_probe(struct usb_device *dev, int ifnum)
int usb_driver_register(struct usb_driver *drv)
{
+ drv->driver.name = drv->name;
drv->driver.bus = &usb_bus_type;
return register_driver(&drv->driver);
}
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
index 865ba8e..5b8923f 100644
--- a/drivers/usb/storage/usb.c
+++ b/drivers/usb/storage/usb.c
@@ -632,7 +632,6 @@ static struct usb_driver usb_storage_driver = {
static int __init usb_stor_init(void)
{
- usb_storage_driver.name = usb_storage_driver.driver.name;
return usb_driver_register(&usb_storage_driver);
}
device_initcall(usb_stor_init);
--
1.7.7
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 1/1] usb: fix driver name
2012-01-14 14:48 [PATCH 1/1] usb: fix driver name Jean-Christophe PLAGNIOL-VILLARD
@ 2012-01-16 8:35 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-01-16 8:35 UTC (permalink / raw)
To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox
On Sat, Jan 14, 2012 at 03:48:47PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> use the usb_driver name
Can you add some explanation to the commit log why this is needed? Which
name is used before the patch and what does it use now?
Sascha
>
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> drivers/usb/core/usb.c | 1 +
> drivers/usb/storage/usb.c | 1 -
> 2 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
> index 7039a2c..f10bcad 100644
> --- a/drivers/usb/core/usb.c
> +++ b/drivers/usb/core/usb.c
> @@ -1275,6 +1275,7 @@ static int usb_hub_probe(struct usb_device *dev, int ifnum)
>
> int usb_driver_register(struct usb_driver *drv)
> {
> + drv->driver.name = drv->name;
> drv->driver.bus = &usb_bus_type;
> return register_driver(&drv->driver);
> }
> diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
> index 865ba8e..5b8923f 100644
> --- a/drivers/usb/storage/usb.c
> +++ b/drivers/usb/storage/usb.c
> @@ -632,7 +632,6 @@ static struct usb_driver usb_storage_driver = {
>
> static int __init usb_stor_init(void)
> {
> - usb_storage_driver.name = usb_storage_driver.driver.name;
> return usb_driver_register(&usb_storage_driver);
> }
> device_initcall(usb_stor_init);
> --
> 1.7.7
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
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 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-16 8:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-14 14:48 [PATCH 1/1] usb: fix driver name Jean-Christophe PLAGNIOL-VILLARD
2012-01-16 8:35 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox