forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples/kobject: be explicit in the module license
Rusty pointed out that the module license should be "GPL v2" to properly match the notice at the top of the files, so make that change. Reported-by: Rusty Russell <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,5 +142,5 @@ static void __exit example_exit(void) | |
|
||
module_init(example_init); | ||
module_exit(example_exit); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_AUTHOR("Greg Kroah-Hartman <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,5 +285,5 @@ static void __exit example_exit(void) | |
|
||
module_init(example_init); | ||
module_exit(example_exit); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_AUTHOR("Greg Kroah-Hartman <[email protected]>"); |