Skip to content

Commit

Permalink
MODULE_LICENSE expects "GPL v2", not "GPLv2"
Browse files Browse the repository at this point in the history
... and we have few enough places using the latter to make it
simpler to do search and replace...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed May 21, 2008
1 parent e3428e2 commit 839cd31
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion arch/sh/drivers/heartbeat.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ module_exit(heartbeat_exit);

MODULE_VERSION(DRV_VERSION);
MODULE_AUTHOR("Paul Mundt");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");
2 changes: 1 addition & 1 deletion drivers/input/keyboard/aaed2000_kbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,4 @@ module_exit(aaedkbd_exit);

MODULE_AUTHOR("Nicolas Bellido Y Ortega");
MODULE_DESCRIPTION("AAED-2000 Keyboard Driver");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");
2 changes: 1 addition & 1 deletion drivers/input/keyboard/corgikbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,5 +412,5 @@ module_exit(corgikbd_exit);

MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>");
MODULE_DESCRIPTION("Corgi Keyboard Driver");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");
MODULE_ALIAS("platform:corgi-keyboard");
2 changes: 1 addition & 1 deletion drivers/input/keyboard/jornada680_kbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,5 +275,5 @@ module_exit(jornada680kbd_exit);

MODULE_AUTHOR("Kristoffer Ericson <kristoffer.ericson@gmail.com>");
MODULE_DESCRIPTION("HP Jornada 620/660/680/690 Keyboard Driver");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");
MODULE_ALIAS("platform:jornada680_kbd");
2 changes: 1 addition & 1 deletion drivers/input/keyboard/jornada720_kbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

MODULE_AUTHOR("Kristoffer Ericson <Kristoffer.Ericson@gmail.com>");
MODULE_DESCRIPTION("HP Jornada 710/720/728 keyboard driver");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");

static unsigned short jornada_std_keymap[128] = { /* ROW */
0, KEY_ESC, KEY_F1, KEY_F2, KEY_F3, KEY_F4, KEY_F5, KEY_F6, KEY_F7, /* #1 */
Expand Down
2 changes: 1 addition & 1 deletion drivers/input/keyboard/spitzkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,5 +494,5 @@ module_exit(spitzkbd_exit);

MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>");
MODULE_DESCRIPTION("Spitz Keyboard Driver");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");
MODULE_ALIAS("platform:spitz-keyboard");
2 changes: 1 addition & 1 deletion drivers/input/touchscreen/jornada720_ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

MODULE_AUTHOR("Kristoffer Ericson <kristoffer.ericson@gmail.com>");
MODULE_DESCRIPTION("HP Jornada 710/720/728 touchscreen driver");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");

struct jornada_ts {
struct input_dev *dev;
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/mac_esp.c
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ static void __exit mac_esp_exit(void)

MODULE_DESCRIPTION("Mac ESP SCSI driver");
MODULE_AUTHOR("Finn Thain <fthain@telegraphics.com.au>");
MODULE_LICENSE("GPLv2");
MODULE_LICENSE("GPL v2");
MODULE_VERSION(DRV_VERSION);

module_init(mac_esp_init);
Expand Down

0 comments on commit 839cd31

Please sign in to comment.