Skip to content

Commit

Permalink
samples/kobject: be explicit in the module license
Browse files Browse the repository at this point in the history
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
gregkh committed Mar 25, 2015
1 parent 5fd637e commit 07afb6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/kobject/kobject-example.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]>");
2 changes: 1 addition & 1 deletion samples/kobject/kset-example.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]>");

0 comments on commit 07afb6a

Please sign in to comment.