diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2008-05-21 06:32:11 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-21 16:56:00 -0700 |
commit | 839cd31050096c88d929cc7c790c80cae87e2d85 (patch) | |
tree | 1b959f416db9936220fe8600c589e5c0f39b0e01 /arch/sh | |
parent | e3428e2cf83ca47b66c194559b9e8a74af915947 (diff) | |
download | op-kernel-dev-839cd31050096c88d929cc7c790c80cae87e2d85.zip op-kernel-dev-839cd31050096c88d929cc7c790c80cae87e2d85.tar.gz |
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 <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/sh')
-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 ab77b0e..938817e3 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"); |