forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ALSA: firewire: use 'GPL' string for module license contributed by Ta…
…kashi Sakamoto In MODULE_LICENSE macro, "GPL" string obsoletes "GPL v2" string by a commit bf7fbee ("module: Cure the MODULE_LICENSE "GPL" vs. "GPL v2" bogosity"). This commit uses the preferable expression. Signed-off-by: Takashi Sakamoto <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
- Loading branch information
Showing
6 changed files
with
6 additions
and
6 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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|
||
MODULE_DESCRIPTION("BridgeCo BeBoB driver"); | ||
MODULE_AUTHOR("Takashi Sakamoto <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; | ||
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
MODULE_DESCRIPTION("Digidesign Digi 002/003 family Driver"); | ||
MODULE_AUTHOR("Takashi Sakamoto <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
#define VENDOR_DIGIDESIGN 0x00a07e | ||
#define MODEL_CONSOLE 0x000001 | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
MODULE_DESCRIPTION("RME Fireface series Driver"); | ||
MODULE_AUTHOR("Takashi Sakamoto <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
static void name_card(struct snd_ff *ff) | ||
{ | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
MODULE_DESCRIPTION("Echo Fireworks driver"); | ||
MODULE_AUTHOR("Takashi Sakamoto <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; | ||
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
MODULE_DESCRIPTION("MOTU FireWire driver"); | ||
MODULE_AUTHOR("Takashi Sakamoto <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
const unsigned int snd_motu_clock_rates[SND_MOTU_CLOCK_RATE_COUNT] = { | ||
/* mode 0 */ | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
MODULE_DESCRIPTION("TASCAM FireWire series Driver"); | ||
MODULE_AUTHOR("Takashi Sakamoto <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
static const struct snd_tscm_spec model_specs[] = { | ||
{ | ||
|