Skip to content

Commit

Permalink
net: usb: hso.c: remove unneeded DRIVER_LICENSE #define
Browse files Browse the repository at this point in the history
There is no need to #define the license of the driver, just put it in
the MODULE_LICENSE() line directly as a text string.

This allows tools that check that the module license matches the source
code license to work properly, as there is no need to unwind the
unneeded dereference.

Cc: "David S. Miller" <[email protected]>
Cc: Andreas Kemnade <[email protected]>
Cc: Johan Hovold <[email protected]>
Reported-by: Philippe Ombredanne <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Reviewed-by: Philippe Ombredanne <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
gregkh authored and davem330 committed Nov 18, 2017
1 parent f743106 commit 461ee7f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/net/usb/hso.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@

#define MOD_AUTHOR "Option Wireless"
#define MOD_DESCRIPTION "USB High Speed Option driver"
#define MOD_LICENSE "GPL"

#define HSO_MAX_NET_DEVICES 10
#define HSO__MAX_MTU 2048
Expand Down Expand Up @@ -3286,7 +3285,7 @@ module_exit(hso_exit);

MODULE_AUTHOR(MOD_AUTHOR);
MODULE_DESCRIPTION(MOD_DESCRIPTION);
MODULE_LICENSE(MOD_LICENSE);
MODULE_LICENSE("GPL");

/* change the debug level (eg: insmod hso.ko debug=0x04) */
MODULE_PARM_DESC(debug, "debug level mask [0x01 | 0x02 | 0x04 | 0x08 | 0x10]");
Expand Down

0 comments on commit 461ee7f

Please sign in to comment.