diff options
author | Al Viro <[email protected]> | 2008-05-21 06:32:11 +0100 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2008-05-21 16:56:00 -0700 |
commit | 839cd31050096c88d929cc7c790c80cae87e2d85 (patch) | |
tree | 1b959f416db9936220fe8600c589e5c0f39b0e01 /arch | |
parent | e3428e2cf83ca47b66c194559b9e8a74af915947 (diff) |
MODULE_LICENSE expects "GPL v2", not "GPLv2"
... and we have few enough places using the latter to make it
simpler to do search and replace...
Signed-off-by: Al Viro <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/drivers/heartbeat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/drivers/heartbeat.c b/arch/sh/drivers/heartbeat.c index ab77b0e0fa0e..938817e34e2b 100644 --- a/arch/sh/drivers/heartbeat.c +++ b/arch/sh/drivers/heartbeat.c @@ -154,4 +154,4 @@ module_exit(heartbeat_exit); MODULE_VERSION(DRV_VERSION); MODULE_AUTHOR("Paul Mundt"); -MODULE_LICENSE("GPLv2"); +MODULE_LICENSE("GPL v2"); |