Messages in this thread Patch in this message |  | | | Subject | Re: [PATCH] PCI and I2C fixes for 2.6.8 | | Date | Mon, 23 Aug 2004 11:34:49 -0700 | | From | Greg KH <> |
| |
ChangeSet 1.1807.56.46, 2004/08/10 16:30:39-07:00, dsaxena@plexity.net
[PATCH] Remove spaces from PCI gameport pci_driver.name fields
Signed-off-by: Deepak Saxena <dsaxena@plexity.net> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/input/gameport/cs461x.c | 2 +- drivers/input/gameport/emu10k1-gp.c | 2 +- drivers/input/gameport/fm801-gp.c | 2 +- drivers/input/gameport/vortex.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-)
diff -Nru a/drivers/input/gameport/cs461x.c b/drivers/input/gameport/cs461x.c --- a/drivers/input/gameport/cs461x.c 2004-08-23 11:02:16 -07:00 +++ b/drivers/input/gameport/cs461x.c 2004-08-23 11:02:16 -07:00 @@ -312,7 +312,7 @@ } static struct pci_driver cs461x_pci_driver = { - .name = "CS461x Gameport", + .name = "CS461x_gameport", .id_table = cs461x_pci_tbl, .probe = cs461x_pci_probe, .remove = __devexit_p(cs461x_pci_remove), diff -Nru a/drivers/input/gameport/emu10k1-gp.c b/drivers/input/gameport/emu10k1-gp.c --- a/drivers/input/gameport/emu10k1-gp.c 2004-08-23 11:02:16 -07:00 +++ b/drivers/input/gameport/emu10k1-gp.c 2004-08-23 11:02:16 -07:00 @@ -109,7 +109,7 @@ } static struct pci_driver emu_driver = { - .name = "Emu10k1 Gameport", + .name = "Emu10k1_gameport", .id_table = emu_tbl, .probe = emu_probe, .remove = __devexit_p(emu_remove), diff -Nru a/drivers/input/gameport/fm801-gp.c b/drivers/input/gameport/fm801-gp.c --- a/drivers/input/gameport/fm801-gp.c 2004-08-23 11:02:16 -07:00 +++ b/drivers/input/gameport/fm801-gp.c 2004-08-23 11:02:16 -07:00 @@ -137,7 +137,7 @@ }; static struct pci_driver fm801_gp_driver = { - .name = "FM801 GP", + .name = "FM801_gameport", .id_table = fm801_gp_id_table, .probe = fm801_gp_probe, .remove = __devexit_p(fm801_gp_remove), diff -Nru a/drivers/input/gameport/vortex.c b/drivers/input/gameport/vortex.c --- a/drivers/input/gameport/vortex.c 2004-08-23 11:02:16 -07:00 +++ b/drivers/input/gameport/vortex.c 2004-08-23 11:02:16 -07:00 @@ -166,7 +166,7 @@ { 0 }}; static struct pci_driver vortex_driver = { - .name = "vortex", + .name = "vortex_gameport", .id_table = vortex_id_table, .probe = vortex_probe, .remove = __devexit_p(vortex_remove), - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |