media: staging: media: zoran: rename debug module parameter
All zoran module will be merged, so to prevent conflict, the debug module parameter need to be renamed Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
b419ee9468
commit
b82cdccafd
4 changed files with 18 additions and 19 deletions
|
|
@ -26,13 +26,13 @@
|
|||
|
||||
#include "videocodec.h"
|
||||
|
||||
static int debug;
|
||||
module_param(debug, int, 0);
|
||||
MODULE_PARM_DESC(debug, "Debug level (0-4)");
|
||||
static int videocodec_debug;
|
||||
module_param(videocodec_debug, int, 0);
|
||||
MODULE_PARM_DESC(videocodec_debug, "Debug level (0-4)");
|
||||
|
||||
#define dprintk(num, format, args...) \
|
||||
do { \
|
||||
if (debug >= num) \
|
||||
if (videocodec_debug >= num) \
|
||||
printk(format, ##args); \
|
||||
} while (0)
|
||||
|
||||
|
|
|
|||
|
|
@ -22,14 +22,14 @@
|
|||
/* amount of chips attached via this driver */
|
||||
static int zr36016_codecs;
|
||||
|
||||
/* debugging is available via module parameter */
|
||||
static int debug;
|
||||
module_param(debug, int, 0);
|
||||
MODULE_PARM_DESC(debug, "Debug level (0-4)");
|
||||
static int zr36016_debug;
|
||||
module_param(zr36016_debug, int, 0);
|
||||
MODULE_PARM_DESC(zr36016_debug, "Debug level (0-4)");
|
||||
|
||||
|
||||
#define dprintk(num, format, args...) \
|
||||
do { \
|
||||
if (debug >= num) \
|
||||
if (zr36016_debug >= num) \
|
||||
printk(format, ##args); \
|
||||
} while (0)
|
||||
|
||||
|
|
@ -120,7 +120,7 @@ static u8 zr36016_read_version(struct zr36016 *ptr)
|
|||
|
||||
static int zr36016_basic_test(struct zr36016 *ptr)
|
||||
{
|
||||
if (debug) {
|
||||
if (zr36016_debug) {
|
||||
int i;
|
||||
|
||||
zr36016_writei(ptr, ZR016I_PAX_LO, 0x55);
|
||||
|
|
|
|||
|
|
@ -32,13 +32,13 @@
|
|||
static int zr36050_codecs;
|
||||
|
||||
/* debugging is available via module parameter */
|
||||
static int debug;
|
||||
module_param(debug, int, 0);
|
||||
MODULE_PARM_DESC(debug, "Debug level (0-4)");
|
||||
static int zr36050_debug;
|
||||
module_param(zr36050_debug, int, 0);
|
||||
MODULE_PARM_DESC(zr36050_debug, "Debug level (0-4)");
|
||||
|
||||
#define dprintk(num, format, args...) \
|
||||
do { \
|
||||
if (debug >= num) \
|
||||
if (zr36050_debug >= num) \
|
||||
printk(format, ##args); \
|
||||
} while (0)
|
||||
|
||||
|
|
|
|||
|
|
@ -34,14 +34,13 @@ static bool low_bitrate;
|
|||
module_param(low_bitrate, bool, 0);
|
||||
MODULE_PARM_DESC(low_bitrate, "Buz compatibility option, halves bitrate");
|
||||
|
||||
/* debugging is available via module parameter */
|
||||
static int debug;
|
||||
module_param(debug, int, 0);
|
||||
MODULE_PARM_DESC(debug, "Debug level (0-4)");
|
||||
static int zr36060_debug;
|
||||
module_param(zr36060_debug, int, 0);
|
||||
MODULE_PARM_DESC(zr36060_debug, "Debug level (0-4)");
|
||||
|
||||
#define dprintk(num, format, args...) \
|
||||
do { \
|
||||
if (debug >= num) \
|
||||
if (zr36060_debug >= num) \
|
||||
printk(format, ##args); \
|
||||
} while (0)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue