diff options
author | Mike Frysinger | 2011-03-22 14:43:37 -0400 |
---|---|---|
committer | Greg Kroah-Hartman | 2011-03-23 13:14:18 -0700 |
commit | 417ddf86c8c499fada439b8ee89bb4c6f282ed6c (patch) | |
tree | b6b50e9eaaea9bc8e8a8e3cbdbfeac71b1b3dc88 /drivers/usb/musb/blackfin.c | |
parent | 5f1e8ce75c19b0433aba6e0ea28937f1ee5d849e (diff) |
usb: musb: blackfin: fix typo in platform driver name
The modularization of the Blackfin driver set the name to "musb-blackfin"
in all the boards, but "musb-bfin" in the driver itself. Since the driver
file name uses "blackfin", change the driver to "musb-blackfin". This is
also easier as it's only one file to change.
Cc: stable@kernel.org
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb/blackfin.c')
-rw-r--r-- | drivers/usb/musb/blackfin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/blackfin.c b/drivers/usb/musb/blackfin.c index 9d49d1cd7ce2..5da9ef8ff311 100644 --- a/drivers/usb/musb/blackfin.c +++ b/drivers/usb/musb/blackfin.c @@ -548,7 +548,7 @@ static struct dev_pm_ops bfin_pm_ops = { static struct platform_driver bfin_driver = { .remove = __exit_p(bfin_remove), .driver = { - .name = "musb-bfin", + .name = "musb-blackfin", .pm = DEV_PM_OPS, }, }; |