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.
[PATCH] v4l: (966) Authorship fixes for new Modules
Fixes Module Author macros Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
4 changed files
with
9 additions
and
12 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 |
---|---|---|
|
@@ -38,10 +38,7 @@ | |
#include "cx25840.h" | ||
|
||
MODULE_DESCRIPTION("Conexant CX25840 audio/video decoder driver"); | ||
MODULE_AUTHOR("Ulf Eklund <[email protected]>"); | ||
MODULE_AUTHOR("Chris Kennedy <[email protected]>"); | ||
MODULE_AUTHOR("Hans Verkuil <[email protected]>"); | ||
MODULE_AUTHOR("Tyler Trafford <[email protected]>"); | ||
MODULE_AUTHOR("Ulf Eklund, Chris Kennedy, Hans Verkuil, Tyler Trafford"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END }; | ||
|
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 |
---|---|---|
|
@@ -42,10 +42,7 @@ | |
#include <media/v4l2-common.h> | ||
|
||
MODULE_DESCRIPTION("Philips SAA7114/SAA7115 video decoder driver"); | ||
MODULE_AUTHOR("Maxim Yevtyushkin <[email protected]>"); | ||
MODULE_AUTHOR("Kevin Thayer <[email protected]>"); | ||
MODULE_AUTHOR("Chris Kennedy <[email protected]>"); | ||
MODULE_AUTHOR("Hans Verkuil <[email protected]>"); | ||
MODULE_AUTHOR("Maxim Yevtyushkin, Kevin Thayer, Chris Kennedy, Hans Verkuil"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
static int debug = 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 |
---|---|---|
|
@@ -60,9 +60,7 @@ static int debug = 0; | |
static int test_image = 0; | ||
|
||
MODULE_DESCRIPTION("Philips SAA7127/9 video encoder driver"); | ||
MODULE_AUTHOR("Kevin Thayer <[email protected]>"); | ||
MODULE_AUTHOR("Chris Kennedy <[email protected]>"); | ||
MODULE_AUTHOR("Hans Verkuil <[email protected]>"); | ||
MODULE_AUTHOR("Kevin Thayer, Chris Kennedy, Hans Verkuil"); | ||
MODULE_LICENSE("GPL"); | ||
module_param(debug, int, 0644); | ||
module_param(test_image, int, 0644); | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,11 @@ | |
* | ||
* Based on saa7115 driver | ||
* | ||
* Copyright (C) 2005 Hans Verkuil <[email protected]> | ||
* - Cleanup | ||
* - V4L2 API update | ||
* - sound fixes | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
|
@@ -31,7 +36,7 @@ | |
#include <media/audiochip.h> | ||
|
||
MODULE_DESCRIPTION("wm8775 driver"); | ||
MODULE_AUTHOR("Ulf Eklund"); | ||
MODULE_AUTHOR("Ulf Eklund, Hans Verkuil"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
#define wm8775_err(fmt, arg...) do { \ | ||
|