Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b33d24c4 authored by Adrian Bunk's avatar Adrian Bunk Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (7750): au0828/ cleanups and fixes



This patch contains the following cleanups and fixes:
- "debug" is definitely not a good name for a global variable,
  renamed it to "au0828_debug"
  this fixes a compile error with some kernel configurations
- since the module parameter is int the variable shouldn't be unsigned
- remove the {usb,bridge,i2c}_debug module parameters since they are
  already covered by the "debug" module parameter
- remove the unused au0828_bcount
- make the needlessly global i2c_scan static
- make the needlessly global dvb_register() static

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent b9ef6bbb
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -36,7 +36,6 @@ struct au0828_board au0828_boards[] = {
		.name	= "DViCO FusionHDTV USB",
		.name	= "DViCO FusionHDTV USB",
	},
	},
};
};
const unsigned int au0828_bcount = ARRAY_SIZE(au0828_boards);


/* Tuner callback function for au0828 boards. Currently only needed
/* Tuner callback function for au0828 boards. Currently only needed
 * for HVR1500Q, which has an xc5000 tuner.
 * for HVR1500Q, which has an xc5000 tuner.
+6 −20
Original line number Original line Diff line number Diff line
@@ -32,18 +32,10 @@
 * 4 = I2C related
 * 4 = I2C related
 * 8 = Bridge related
 * 8 = Bridge related
 */
 */
unsigned int debug;
int au0828_debug;
module_param(debug, int, 0644);
module_param_named(debug, au0828_debug, int, 0644);
MODULE_PARM_DESC(debug, "enable debug messages");
MODULE_PARM_DESC(debug, "enable debug messages");


unsigned int usb_debug;
module_param(usb_debug, int, 0644);
MODULE_PARM_DESC(usb_debug, "enable usb debug messages");

unsigned int bridge_debug;
module_param(bridge_debug, int, 0644);
MODULE_PARM_DESC(bridge_debug, "enable bridge debug messages");

#define _AU0828_BULKPIPE 0x03
#define _AU0828_BULKPIPE 0x03
#define _BULKPIPESIZE 0xffff
#define _BULKPIPESIZE 0xffff


@@ -229,24 +221,18 @@ static int __init au0828_init(void)
{
{
	int ret;
	int ret;


	if (debug)
	if (au0828_debug & 1)
		printk(KERN_INFO "%s() Debugging is enabled\n", __func__);
		printk(KERN_INFO "%s() Debugging is enabled\n", __func__);


	if (usb_debug) {
	if (au0828_debug & 2)
		printk(KERN_INFO "%s() USB Debugging is enabled\n", __func__);
		printk(KERN_INFO "%s() USB Debugging is enabled\n", __func__);
		debug |= 2;
	}


	if (i2c_debug) {
	if (au0828_debug & 4)
		printk(KERN_INFO "%s() I2C Debugging is enabled\n", __func__);
		printk(KERN_INFO "%s() I2C Debugging is enabled\n", __func__);
		debug |= 4;
	}


	if (bridge_debug) {
	if (au0828_debug & 8)
		printk(KERN_INFO "%s() Bridge Debugging is enabled\n",
		printk(KERN_INFO "%s() Bridge Debugging is enabled\n",
		       __func__);
		       __func__);
		debug |= 8;
	}


	printk(KERN_INFO "au0828 driver loaded\n");
	printk(KERN_INFO "au0828 driver loaded\n");


+1 −1
Original line number Original line Diff line number Diff line
@@ -204,7 +204,7 @@ static int au0828_dvb_stop_feed(struct dvb_demux_feed *feed)
	return ret;
	return ret;
}
}


int dvb_register(struct au0828_dev *dev)
static int dvb_register(struct au0828_dev *dev)
{
{
	struct au0828_dvb *dvb = &dev->dvb;
	struct au0828_dvb *dvb = &dev->dvb;
	int result;
	int result;
+1 −5
Original line number Original line Diff line number Diff line
@@ -29,11 +29,7 @@


#include <media/v4l2-common.h>
#include <media/v4l2-common.h>


unsigned int i2c_debug;
static int i2c_scan;
module_param(i2c_debug, int, 0444);
MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");

unsigned int i2c_scan;
module_param(i2c_scan, int, 0444);
module_param(i2c_scan, int, 0444);
MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time");
MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time");


+2 −6
Original line number Original line Diff line number Diff line
@@ -96,15 +96,12 @@ struct au0828_buff {
/* au0828-core.c */
/* au0828-core.c */
extern u32 au0828_read(struct au0828_dev *dev, u16 reg);
extern u32 au0828_read(struct au0828_dev *dev, u16 reg);
extern u32 au0828_write(struct au0828_dev *dev, u16 reg, u32 val);
extern u32 au0828_write(struct au0828_dev *dev, u16 reg, u32 val);
extern unsigned int debug;
extern int au0828_debug;
extern unsigned int usb_debug;
extern unsigned int bridge_debug;


/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* au0828-cards.c */
/* au0828-cards.c */
extern struct au0828_board au0828_boards[];
extern struct au0828_board au0828_boards[];
extern struct usb_device_id au0828_usb_id_table[];
extern struct usb_device_id au0828_usb_id_table[];
extern const unsigned int au0828_bcount;
extern void au0828_gpio_setup(struct au0828_dev *dev);
extern void au0828_gpio_setup(struct au0828_dev *dev);
extern int au0828_tuner_callback(void *priv, int command, int arg);
extern int au0828_tuner_callback(void *priv, int command, int arg);
extern void au0828_card_setup(struct au0828_dev *dev);
extern void au0828_card_setup(struct au0828_dev *dev);
@@ -115,7 +112,6 @@ extern int au0828_i2c_register(struct au0828_dev *dev);
extern int au0828_i2c_unregister(struct au0828_dev *dev);
extern int au0828_i2c_unregister(struct au0828_dev *dev);
extern void au0828_call_i2c_clients(struct au0828_dev *dev,
extern void au0828_call_i2c_clients(struct au0828_dev *dev,
	unsigned int cmd, void *arg);
	unsigned int cmd, void *arg);
extern unsigned int i2c_debug;


/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* au0828-dvb.c */
/* au0828-dvb.c */
@@ -123,6 +119,6 @@ extern int au0828_dvb_register(struct au0828_dev *dev);
extern void au0828_dvb_unregister(struct au0828_dev *dev);
extern void au0828_dvb_unregister(struct au0828_dev *dev);


#define dprintk(level, fmt, arg...)\
#define dprintk(level, fmt, arg...)\
	do { if (debug & level)\
	do { if (au0828_debug & level)\
		printk(KERN_DEBUG DRIVER_NAME "/0: " fmt, ## arg);\
		printk(KERN_DEBUG DRIVER_NAME "/0: " fmt, ## arg);\
	} while (0)
	} while (0)