Commit f5ae4f6f authored by Manu Abraham's avatar Manu Abraham Committed by Mauro Carvalho Chehab

V4L/DVB (13809): Fix Checkpatch violations

Signed-off-by: default avatarManu Abraham <manu@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 1e42dc78
This diff is collapsed.
...@@ -35,4 +35,4 @@ extern struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config, ...@@ -35,4 +35,4 @@ extern struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config,
struct i2c_adapter *i2c_adap); struct i2c_adapter *i2c_adap);
#endif //__MB86A16_H #endif /* __MB86A16_H */
...@@ -148,4 +148,4 @@ ...@@ -148,4 +148,4 @@
#define MB86A16_DISTMON 0x52 #define MB86A16_DISTMON 0x52
#define MB86A16_VERSION 0x7f #define MB86A16_VERSION 0x7f
#endif //__MB86A16_PRIV_H #endif /* __MB86A16_PRIV_H */
...@@ -45,7 +45,7 @@ static int tda665x_read(struct tda665x_state *state, u8 *buf) ...@@ -45,7 +45,7 @@ static int tda665x_read(struct tda665x_state *state, u8 *buf)
return err; return err;
exit: exit:
printk("%s: I/O Error err=<%d>\n", __func__, err); printk(KERN_ERR "%s: I/O Error err=<%d>\n", __func__, err);
return err; return err;
} }
...@@ -61,7 +61,7 @@ static int tda665x_write(struct tda665x_state *state, u8 *buf, u8 length) ...@@ -61,7 +61,7 @@ static int tda665x_write(struct tda665x_state *state, u8 *buf, u8 length)
return err; return err;
exit: exit:
printk("%s: I/O Error err=<%d>\n", __func__, err); printk(KERN_ERR "%s: I/O Error err=<%d>\n", __func__, err);
return err; return err;
} }
...@@ -79,7 +79,7 @@ static int tda665x_get_state(struct dvb_frontend *fe, ...@@ -79,7 +79,7 @@ static int tda665x_get_state(struct dvb_frontend *fe,
case DVBFE_TUNER_BANDWIDTH: case DVBFE_TUNER_BANDWIDTH:
break; break;
default: default:
printk("%s: Unknown parameter (param=%d)\n", __func__, param); printk(KERN_ERR "%s: Unknown parameter (param=%d)\n", __func__, param);
err = -EINVAL; err = -EINVAL;
break; break;
} }
...@@ -100,13 +100,13 @@ static int tda665x_get_status(struct dvb_frontend *fe, u32 *status) ...@@ -100,13 +100,13 @@ static int tda665x_get_status(struct dvb_frontend *fe, u32 *status)
goto exit; goto exit;
if ((result >> 6) & 0x01) { if ((result >> 6) & 0x01) {
printk("%s: Tuner Phase Locked\n", __func__); printk(KERN_DEBUG "%s: Tuner Phase Locked\n", __func__);
*status = 1; *status = 1;
} }
return err; return err;
exit: exit:
printk("%s: I/O Error\n", __func__); printk(KERN_ERR "%s: I/O Error\n", __func__);
return err; return err;
} }
...@@ -124,7 +124,7 @@ static int tda665x_set_state(struct dvb_frontend *fe, ...@@ -124,7 +124,7 @@ static int tda665x_set_state(struct dvb_frontend *fe,
frequency = tstate->frequency; frequency = tstate->frequency;
if ((frequency < config->frequency_max) || (frequency > config->frequency_min)) { if ((frequency < config->frequency_max) || (frequency > config->frequency_min)) {
printk("%s: Frequency beyond limits, frequency=%d\n", __func__, frequency); printk(KERN_ERR "%s: Frequency beyond limits, frequency=%d\n", __func__, frequency);
return -EINVAL; return -EINVAL;
} }
...@@ -133,8 +133,8 @@ static int tda665x_set_state(struct dvb_frontend *fe, ...@@ -133,8 +133,8 @@ static int tda665x_set_state(struct dvb_frontend *fe,
frequency += config->ref_divider >> 1; frequency += config->ref_divider >> 1;
frequency /= config->ref_divider; frequency /= config->ref_divider;
buf[0] = (u8 ) (frequency & 0x7f00) >> 8; buf[0] = (u8) (frequency & 0x7f00) >> 8;
buf[1] = (u8 ) (frequency & 0x00ff) >> 0; buf[1] = (u8) (frequency & 0x00ff) >> 0;
buf[2] = 0x80 | 0x40 | 0x02; buf[2] = 0x80 | 0x40 | 0x02;
buf[3] = 0x00; buf[3] = 0x00;
...@@ -178,7 +178,7 @@ static int tda665x_set_state(struct dvb_frontend *fe, ...@@ -178,7 +178,7 @@ static int tda665x_set_state(struct dvb_frontend *fe,
goto exit; goto exit;
/* sleep for some time */ /* sleep for some time */
printk("%s: Waiting to Phase LOCK\n", __func__); printk(KERN_DEBUG "%s: Waiting to Phase LOCK\n", __func__);
msleep(20); msleep(20);
/* check status */ /* check status */
err = tda665x_get_status(fe, &status); err = tda665x_get_status(fe, &status);
...@@ -186,19 +186,19 @@ static int tda665x_set_state(struct dvb_frontend *fe, ...@@ -186,19 +186,19 @@ static int tda665x_set_state(struct dvb_frontend *fe,
goto exit; goto exit;
if (status == 1) { if (status == 1) {
printk("%s: Tuner Phase locked: status=%d\n", __func__, status); printk(KERN_DEBUG "%s: Tuner Phase locked: status=%d\n", __func__, status);
state->frequency = frequency; /* cache successful state */ state->frequency = frequency; /* cache successful state */
} else { } else {
printk("%s: No Phase lock: status=%d\n", __func__, status); printk(KERN_ERR "%s: No Phase lock: status=%d\n", __func__, status);
} }
} else { } else {
printk("%s: Unknown parameter (param=%d)\n", __func__, param); printk(KERN_ERR "%s: Unknown parameter (param=%d)\n", __func__, param);
return -EINVAL; return -EINVAL;
} }
return 0; return 0;
exit: exit:
printk("%s: I/O Error\n", __func__); printk(KERN_ERR "%s: I/O Error\n", __func__);
return err; return err;
} }
...@@ -226,7 +226,7 @@ struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe, ...@@ -226,7 +226,7 @@ struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe,
struct tda665x_state *state = NULL; struct tda665x_state *state = NULL;
struct dvb_tuner_info *info; struct dvb_tuner_info *info;
state = kzalloc(sizeof (struct tda665x_state), GFP_KERNEL); state = kzalloc(sizeof(struct tda665x_state), GFP_KERNEL);
if (state == NULL) if (state == NULL)
goto exit; goto exit;
...@@ -237,12 +237,12 @@ struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe, ...@@ -237,12 +237,12 @@ struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe,
fe->ops.tuner_ops = tda665x_ops; fe->ops.tuner_ops = tda665x_ops;
info = &fe->ops.tuner_ops.info; info = &fe->ops.tuner_ops.info;
memcpy(info->name, config->name, sizeof (config->name)); memcpy(info->name, config->name, sizeof(config->name));
info->frequency_min = config->frequency_min; info->frequency_min = config->frequency_min;
info->frequency_max = config->frequency_max; info->frequency_max = config->frequency_max;
info->frequency_step = config->frequency_offst; info->frequency_step = config->frequency_offst;
printk("%s: Attaching TDA665x (%s) tuner\n", __func__, info->name); printk(KERN_DEBUG "%s: Attaching TDA665x (%s) tuner\n", __func__, info->name);
return fe; return fe;
......
...@@ -137,7 +137,7 @@ static int __devinit hopper_pci_probe(struct pci_dev *pdev, const struct pci_dev ...@@ -137,7 +137,7 @@ static int __devinit hopper_pci_probe(struct pci_dev *pdev, const struct pci_dev
struct mantis_hwconfig *config; struct mantis_hwconfig *config;
int err = 0; int err = 0;
mantis = kzalloc(sizeof (struct mantis_pci), GFP_KERNEL); mantis = kzalloc(sizeof(struct mantis_pci), GFP_KERNEL);
if (mantis == NULL) { if (mantis == NULL) {
printk(KERN_ERR "%s ERROR: Out of memory\n", __func__); printk(KERN_ERR "%s ERROR: Out of memory\n", __func__);
err = -ENOMEM; err = -ENOMEM;
......
...@@ -119,7 +119,7 @@ static int mantis_ts_control(struct dvb_ca_en50221 *en50221, int slot) ...@@ -119,7 +119,7 @@ static int mantis_ts_control(struct dvb_ca_en50221 *en50221, int slot)
struct mantis_pci *mantis = ca->ca_priv; struct mantis_pci *mantis = ca->ca_priv;
dprintk(MANTIS_DEBUG, 1, "Slot(%d): TS control", slot); dprintk(MANTIS_DEBUG, 1, "Slot(%d): TS control", slot);
// mantis_set_direction(mantis, 1); /* Enable TS through CAM */ /* mantis_set_direction(mantis, 1); */ /* Enable TS through CAM */
return 0; return 0;
} }
...@@ -148,7 +148,7 @@ int mantis_ca_init(struct mantis_pci *mantis) ...@@ -148,7 +148,7 @@ int mantis_ca_init(struct mantis_pci *mantis)
int ca_flags = 0, result; int ca_flags = 0, result;
dprintk(MANTIS_DEBUG, 1, "Initializing Mantis CA"); dprintk(MANTIS_DEBUG, 1, "Initializing Mantis CA");
ca = kzalloc(sizeof (struct mantis_ca), GFP_KERNEL); ca = kzalloc(sizeof(struct mantis_ca), GFP_KERNEL);
if (!ca) { if (!ca) {
dprintk(MANTIS_ERROR, 1, "Out of memory!, exiting .."); dprintk(MANTIS_ERROR, 1, "Out of memory!, exiting ..");
result = -ENOMEM; result = -ENOMEM;
......
...@@ -145,7 +145,7 @@ static int __devinit mantis_pci_probe(struct pci_dev *pdev, const struct pci_dev ...@@ -145,7 +145,7 @@ static int __devinit mantis_pci_probe(struct pci_dev *pdev, const struct pci_dev
struct mantis_hwconfig *config; struct mantis_hwconfig *config;
int err = 0; int err = 0;
mantis = kzalloc(sizeof (struct mantis_pci), GFP_KERNEL); mantis = kzalloc(sizeof(struct mantis_pci), GFP_KERNEL);
if (mantis == NULL) { if (mantis == NULL) {
printk(KERN_ERR "%s ERROR: Out of memory\n", __func__); printk(KERN_ERR "%s ERROR: Out of memory\n", __func__);
err = -ENOMEM; err = -ENOMEM;
......
...@@ -36,14 +36,16 @@ static int read_eeprom_byte(struct mantis_pci *mantis, u8 *data, u8 length) ...@@ -36,14 +36,16 @@ static int read_eeprom_byte(struct mantis_pci *mantis, u8 *data, u8 length)
.flags = 0, .flags = 0,
.buf = data, .buf = data,
.len = 1 .len = 1
},{ }, {
.addr = 0x50, .addr = 0x50,
.flags = I2C_M_RD, .flags = I2C_M_RD,
.buf = data, .buf = data,
.len = length .len = length
}, },
}; };
if ((err = i2c_transfer(&mantis->adapter, msg, 2)) < 0) {
err = i2c_transfer(&mantis->adapter, msg, 2);
if (err < 0) {
dprintk(verbose, MANTIS_ERROR, 1, dprintk(verbose, MANTIS_ERROR, 1,
"ERROR: i2c read: < err=%i d0=0x%02x d1=0x%02x >", "ERROR: i2c read: < err=%i d0=0x%02x d1=0x%02x >",
err, data[0], data[1]); err, data[0], data[1]);
...@@ -65,7 +67,8 @@ static int write_eeprom_byte(struct mantis_pci *mantis, u8 *data, u8 length) ...@@ -65,7 +67,8 @@ static int write_eeprom_byte(struct mantis_pci *mantis, u8 *data, u8 length)
.len = length .len = length
}; };
if ((err = i2c_transfer(&mantis->adapter, &msg, 1)) < 0) { err = i2c_transfer(&mantis->adapter, &msg, 1);
if (err < 0) {
dprintk(verbose, MANTIS_ERROR, 1, dprintk(verbose, MANTIS_ERROR, 1,
"ERROR: i2c write: < err=%i length=0x%02x d0=0x%02x, d1=0x%02x >", "ERROR: i2c write: < err=%i length=0x%02x d0=0x%02x, d1=0x%02x >",
err, length, data[0], data[1]); err, length, data[0], data[1]);
...@@ -81,7 +84,8 @@ static int get_mac_address(struct mantis_pci *mantis) ...@@ -81,7 +84,8 @@ static int get_mac_address(struct mantis_pci *mantis)
int err; int err;
mantis->mac_address[0] = 0x08; mantis->mac_address[0] = 0x08;
if ((err = read_eeprom_byte(mantis, &mantis->mac_address[0], 6)) < 0) { err = read_eeprom_byte(mantis, &mantis->mac_address[0], 6);
if (err < 0) {
dprintk(verbose, MANTIS_ERROR, 1, "Mantis EEPROM read error"); dprintk(verbose, MANTIS_ERROR, 1, "Mantis EEPROM read error");
return err; return err;
...@@ -106,25 +110,25 @@ struct mantis_hwconfig unknown_device = { ...@@ -106,25 +110,25 @@ struct mantis_hwconfig unknown_device = {
static void mantis_load_config(struct mantis_pci *mantis) static void mantis_load_config(struct mantis_pci *mantis)
{ {
switch (mantis->subsystem_device) { switch (mantis->subsystem_device) {
case MANTIS_VP_1033_DVB_S: // VP-1033 case MANTIS_VP_1033_DVB_S: /* VP-1033 */
mantis->hwconfig = &vp1033_mantis_config; mantis->hwconfig = &vp1033_mantis_config;
break; break;
case MANTIS_VP_1034_DVB_S: // VP-1034 case MANTIS_VP_1034_DVB_S: /* VP-1034 */
mantis->hwconfig = &vp1034_mantis_config; mantis->hwconfig = &vp1034_mantis_config;
break; break;
case MANTIS_VP_1041_DVB_S2: // VP-1041 case MANTIS_VP_1041_DVB_S2: /* VP-1041 */
case TECHNISAT_SKYSTAR_HD2: case TECHNISAT_SKYSTAR_HD2:
mantis->hwconfig = &vp1041_mantis_config; mantis->hwconfig = &vp1041_mantis_config;
break; break;
case MANTIS_VP_2033_DVB_C: // VP-2033 case MANTIS_VP_2033_DVB_C: /* VP-2033 */
mantis->hwconfig = &vp2033_mantis_config; mantis->hwconfig = &vp2033_mantis_config;
break; break;
case MANTIS_VP_2040_DVB_C: // VP-2040 case MANTIS_VP_2040_DVB_C: /* VP-2040 */
case TERRATEC_CINERGY_C_PCI: // VP-2040 clone case TERRATEC_CINERGY_C_PCI: /* VP-2040 clone */
case TECHNISAT_CABLESTAR_HD2: case TECHNISAT_CABLESTAR_HD2:
mantis->hwconfig = &vp2040_mantis_config; mantis->hwconfig = &vp2040_mantis_config;
break; break;
case MANTIS_VP_3030_DVB_T: // VP-3030 case MANTIS_VP_3030_DVB_T: /* VP-3030 */
mantis->hwconfig = &vp3030_mantis_config; mantis->hwconfig = &vp3030_mantis_config;
break; break;
default: default:
...@@ -149,23 +153,28 @@ int mantis_core_init(struct mantis_pci *mantis) ...@@ -149,23 +153,28 @@ int mantis_core_init(struct mantis_pci *mantis)
mantis->pdev->irq, mantis->latency, mantis->pdev->irq, mantis->latency,
mantis->mantis_addr, mantis->mantis_mmio); mantis->mantis_addr, mantis->mantis_mmio);
if ((err = mantis_i2c_init(mantis)) < 0) { err = mantis_i2c_init(mantis);
if (err < 0) {
dprintk(verbose, MANTIS_ERROR, 1, "Mantis I2C init failed"); dprintk(verbose, MANTIS_ERROR, 1, "Mantis I2C init failed");
return err; return err;
} }
if ((err = get_mac_address(mantis)) < 0) { err = get_mac_address(mantis);
if (err < 0) {
dprintk(verbose, MANTIS_ERROR, 1, "get MAC address failed"); dprintk(verbose, MANTIS_ERROR, 1, "get MAC address failed");
return err; return err;
} }
if ((err = mantis_dma_init(mantis)) < 0) { err = mantis_dma_init(mantis);
if (err < 0) {
dprintk(verbose, MANTIS_ERROR, 1, "Mantis DMA init failed"); dprintk(verbose, MANTIS_ERROR, 1, "Mantis DMA init failed");
return err; return err;
} }
if ((err = mantis_dvb_init(mantis)) < 0) { err = mantis_dvb_init(mantis);
if (err < 0) {
dprintk(verbose, MANTIS_DEBUG, 1, "Mantis DVB init failed"); dprintk(verbose, MANTIS_DEBUG, 1, "Mantis DVB init failed");
return err; return err;
} }
if ((err = mantis_uart_init(mantis)) < 0) { err = mantis_uart_init(mantis);
if (err < 0) {
dprintk(verbose, MANTIS_DEBUG, 1, "Mantis UART init failed"); dprintk(verbose, MANTIS_DEBUG, 1, "Mantis UART init failed");
return err; return err;
} }
...@@ -191,7 +200,7 @@ int mantis_core_exit(struct mantis_pci *mantis) ...@@ -191,7 +200,7 @@ int mantis_core_exit(struct mantis_pci *mantis)
return 0; return 0;
} }
// Turn the given bit on or off. /* Turn the given bit on or off. */
void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value) void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value)
{ {
u32 cur; u32 cur;
...@@ -207,14 +216,15 @@ void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value) ...@@ -207,14 +216,15 @@ void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value)
udelay(100); udelay(100);
} }
//direction = 0 , no CI passthrough ; 1 , CI passthrough /* direction = 0 , no CI passthrough ; 1 , CI passthrough */
void mantis_set_direction(struct mantis_pci *mantis, int direction) void mantis_set_direction(struct mantis_pci *mantis, int direction)
{ {
u32 reg; u32 reg;
reg = mmread(0x28); reg = mmread(0x28);
dprintk(verbose, MANTIS_DEBUG, 1, "TS direction setup"); dprintk(verbose, MANTIS_DEBUG, 1, "TS direction setup");
if (direction == 0x01) { //to CI if (direction == 0x01) {
/* to CI */
reg |= 0x04; reg |= 0x04;
mmwrite(reg, 0x28); mmwrite(reg, 0x28);
reg &= 0xff - 0x04; reg &= 0xff - 0x04;
......
...@@ -33,15 +33,15 @@ ...@@ -33,15 +33,15 @@
struct vendorname { struct vendorname {
__u8 *sub_vendor_name; u8 *sub_vendor_name;
__u32 sub_vendor_id; u32 sub_vendor_id;
}; };
struct devicetype { struct devicetype {
__u8 *sub_device_name; u8 *sub_device_name;
__u32 sub_device_id; u32 sub_device_id;
__u8 device_type; u8 device_type;
__u32 type_flags; u32 type_flags;
}; };
...@@ -54,4 +54,4 @@ extern int mantis_i2c_exit(struct mantis_pci *mantis); ...@@ -54,4 +54,4 @@ extern int mantis_i2c_exit(struct mantis_pci *mantis);
extern int mantis_core_init(struct mantis_pci *mantis); extern int mantis_core_init(struct mantis_pci *mantis);
extern int mantis_core_exit(struct mantis_pci *mantis); extern int mantis_core_exit(struct mantis_pci *mantis);
#endif //__MANTIS_CORE_H #endif /* __MANTIS_CORE_H */
...@@ -43,10 +43,10 @@ ...@@ -43,10 +43,10 @@
#define RISC_IRQ (0x01 << 24) #define RISC_IRQ (0x01 << 24)
#define RISC_STATUS(status) ((((~status) & 0x0f) << 20) | ((status & 0x0f) << 16)) #define RISC_STATUS(status) ((((~status) & 0x0f) << 20) | ((status & 0x0f) << 16))
#define RISC_FLUSH() mantis->risc_pos = 0 #define RISC_FLUSH() (mantis->risc_pos = 0)
#define RISC_INSTR(opcode) mantis->risc_cpu[mantis->risc_pos++] = cpu_to_le32(opcode) #define RISC_INSTR(opcode) (mantis->risc_cpu[mantis->risc_pos++] = cpu_to_le32(opcode))
#define MANTIS_BUF_SIZE 64 * 1024 #define MANTIS_BUF_SIZE (64 * 1024)
#define MANTIS_BLOCK_BYTES (MANTIS_BUF_SIZE >> 4) #define MANTIS_BLOCK_BYTES (MANTIS_BUF_SIZE >> 4)
#define MANTIS_BLOCK_COUNT (1 << 4) #define MANTIS_BLOCK_COUNT (1 << 4)
#define MANTIS_RISC_SIZE PAGE_SIZE #define MANTIS_RISC_SIZE PAGE_SIZE
...@@ -158,7 +158,8 @@ int mantis_dma_init(struct mantis_pci *mantis) ...@@ -158,7 +158,8 @@ int mantis_dma_init(struct mantis_pci *mantis)
goto err; goto err;
} }
if ((err = mantis_calc_lines(mantis)) < 0) { err = mantis_calc_lines(mantis);
if (err < 0) {
dprintk(MANTIS_ERROR, 1, "Mantis calc lines failed"); dprintk(MANTIS_ERROR, 1, "Mantis calc lines failed");
goto err; goto err;
...@@ -248,7 +249,7 @@ void mantis_dma_xfer(unsigned long data) ...@@ -248,7 +249,7 @@ void mantis_dma_xfer(unsigned long data)
dprintk(MANTIS_DEBUG, 1, "last block=[%d] finished block=[%d]", dprintk(MANTIS_DEBUG, 1, "last block=[%d] finished block=[%d]",
mantis->last_block, mantis->finished_block); mantis->last_block, mantis->finished_block);
(config->ts_size ? dvb_dmx_swfilter_204: dvb_dmx_swfilter) (config->ts_size ? dvb_dmx_swfilter_204 : dvb_dmx_swfilter)
(&mantis->demux, &mantis->buf_cpu[mantis->last_block * MANTIS_BLOCK_BYTES], MANTIS_BLOCK_BYTES); (&mantis->demux, &mantis->buf_cpu[mantis->last_block * MANTIS_BLOCK_BYTES], MANTIS_BLOCK_BYTES);
mantis->last_block = (mantis->last_block + 1) % MANTIS_BLOCK_COUNT; mantis->last_block = (mantis->last_block + 1) % MANTIS_BLOCK_COUNT;
} }
......
...@@ -116,7 +116,6 @@ static int mantis_dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed) ...@@ -116,7 +116,6 @@ static int mantis_dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed)
if (mantis->feeds == 1) { if (mantis->feeds == 1) {
dprintk(MANTIS_DEBUG, 1, "mantis start feed & dma"); dprintk(MANTIS_DEBUG, 1, "mantis start feed & dma");
printk("mantis start feed & dma\n");
mantis_dma_start(mantis); mantis_dma_start(mantis);
} }
...@@ -137,7 +136,6 @@ static int mantis_dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) ...@@ -137,7 +136,6 @@ static int mantis_dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed)
mantis->feeds--; mantis->feeds--;
if (mantis->feeds == 0) { if (mantis->feeds == 0) {
dprintk(MANTIS_DEBUG, 1, "mantis stop feed and dma"); dprintk(MANTIS_DEBUG, 1, "mantis stop feed and dma");
printk("mantis stop feed and dma\n");
mantis_dma_stop(mantis); mantis_dma_stop(mantis);
} }
...@@ -204,9 +202,9 @@ int __devinit mantis_dvb_init(struct mantis_pci *mantis) ...@@ -204,9 +202,9 @@ int __devinit mantis_dvb_init(struct mantis_pci *mantis)
} }
mantis->fe_mem.source = DMX_MEMORY_FE; mantis->fe_mem.source = DMX_MEMORY_FE;
result = mantis->demux.dmx.add_frontend(&mantis->demux.dmx,&mantis->fe_mem); result = mantis->demux.dmx.add_frontend(&mantis->demux.dmx, &mantis->fe_mem);
if (result < 0) { if (result < 0) {
dprintk(MANTIS_ERROR, 1,"dvb_dmx_init failed, ERROR=%d", result); dprintk(MANTIS_ERROR, 1, "dvb_dmx_init failed, ERROR=%d", result);
goto err3; goto err3;
} }
...@@ -224,10 +222,6 @@ int __devinit mantis_dvb_init(struct mantis_pci *mantis) ...@@ -224,10 +222,6 @@ int __devinit mantis_dvb_init(struct mantis_pci *mantis)
dprintk(MANTIS_ERROR, 1, "!!! NO Frontends found !!!"); dprintk(MANTIS_ERROR, 1, "!!! NO Frontends found !!!");
goto err5; goto err5;
} else { } else {
// if (mantis->dvb_adapter == NULL) {
// dprintk(MANTIS_ERROR, 1, "DVB adapter <NULL>");
// goto err5;
// }
if (mantis->fe == NULL) { if (mantis->fe == NULL) {
dprintk(MANTIS_ERROR, 1, "FE <NULL>"); dprintk(MANTIS_ERROR, 1, "FE <NULL>");
goto err5; goto err5;
...@@ -277,7 +271,7 @@ int __devexit mantis_dvb_exit(struct mantis_pci *mantis) ...@@ -277,7 +271,7 @@ int __devexit mantis_dvb_exit(struct mantis_pci *mantis)
int err; int err;
if (mantis->fe) { if (mantis->fe) {
// mantis_ca_exit(mantis); /* mantis_ca_exit(mantis); */
err = mantis_frontend_shutdown(mantis); err = mantis_frontend_shutdown(mantis);
if (err != 0) if (err != 0)
dprintk(MANTIS_ERROR, 1, "Frontend exit while POWER ON! <%d>", err); dprintk(MANTIS_ERROR, 1, "Frontend exit while POWER ON! <%d>", err);
......
...@@ -225,7 +225,7 @@ int __devinit mantis_i2c_init(struct mantis_pci *mantis) ...@@ -225,7 +225,7 @@ int __devinit mantis_i2c_init(struct mantis_pci *mantis)
init_waitqueue_head(&mantis->i2c_wq); init_waitqueue_head(&mantis->i2c_wq);
mutex_init(&mantis->i2c_lock); mutex_init(&mantis->i2c_lock);
strncpy(i2c_adapter->name, "Mantis I2C", sizeof (i2c_adapter->name)); strncpy(i2c_adapter->name, "Mantis I2C", sizeof(i2c_adapter->name));
i2c_set_adapdata(i2c_adapter, mantis); i2c_set_adapdata(i2c_adapter, mantis);
i2c_adapter->owner = THIS_MODULE; i2c_adapter->owner = THIS_MODULE;
......
...@@ -36,9 +36,9 @@ static struct ir_scancode mantis_ir_table[] = { ...@@ -36,9 +36,9 @@ static struct ir_scancode mantis_ir_table[] = {
{ 0x29, KEY_POWER }, { 0x29, KEY_POWER },
{ 0x28, KEY_FAVORITES }, { 0x28, KEY_FAVORITES },
{ 0x30, KEY_TEXT }, { 0x30, KEY_TEXT },
{ 0x17, KEY_INFO }, // Preview { 0x17, KEY_INFO }, /* Preview */
{ 0x23, KEY_EPG }, { 0x23, KEY_EPG },
{ 0x3b, KEY_F22 },// Record List { 0x3b, KEY_F22 }, /* Record List */
{ 0x3c, KEY_1 }, { 0x3c, KEY_1 },
{ 0x3e, KEY_2 }, { 0x3e, KEY_2 },
{ 0x39, KEY_3 }, { 0x39, KEY_3 },
...@@ -71,22 +71,22 @@ static struct ir_scancode mantis_ir_table[] = { ...@@ -71,22 +71,22 @@ static struct ir_scancode mantis_ir_table[] = {
{ 0x1f, KEY_REWIND }, { 0x1f, KEY_REWIND },
{ 0x2d, KEY_FASTFORWARD }, { 0x2d, KEY_FASTFORWARD },
{ 0x1e, KEY_PREVIOUS }, // Replay |< { 0x1e, KEY_PREVIOUS }, /* Replay |< */
{ 0x1d, KEY_NEXT }, // Skip >| { 0x1d, KEY_NEXT }, /* Skip >| */
{ 0x0b, KEY_CAMERA }, // Capture { 0x0b, KEY_CAMERA }, /* Capture */
{ 0x0f, KEY_LANGUAGE }, // SAP { 0x0f, KEY_LANGUAGE }, /* SAP */
{ 0x18, KEY_MODE }, // PIP { 0x18, KEY_MODE }, /* PIP */
{ 0x12, KEY_ZOOM }, // Full screen, { 0x12, KEY_ZOOM }, /* Full screen */
{ 0x1c, KEY_SUBTITLE }, { 0x1c, KEY_SUBTITLE },
{ 0x2f, KEY_MUTE }, { 0x2f, KEY_MUTE },
{ 0x16, KEY_F20 }, // L/R, { 0x16, KEY_F20 }, /* L/R */
{ 0x38, KEY_F21 }, // Hibernate, { 0x38, KEY_F21 }, /* Hibernate */
{ 0x37, KEY_SWITCHVIDEOMODE }, // A/V { 0x37, KEY_SWITCHVIDEOMODE }, /* A/V */
{ 0x31, KEY_AGAIN }, // Recall, { 0x31, KEY_AGAIN }, /* Recall */
{ 0x1a, KEY_KPPLUS }, // Zoom+, { 0x1a, KEY_KPPLUS }, /* Zoom+ */
{ 0x19, KEY_KPMINUS }, // Zoom-, { 0x19, KEY_KPMINUS }, /* Zoom- */
{ 0x27, KEY_RED }, { 0x27, KEY_RED },
{ 0x0C, KEY_GREEN }, { 0x0C, KEY_GREEN },
{ 0x01, KEY_YELLOW }, { 0x01, KEY_YELLOW },
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#define MANTIS_INT_RISCEN (0x01 << 27) #define MANTIS_INT_RISCEN (0x01 << 27)
#define MANTIS_INT_I2CRACK (0x01 << 26) #define MANTIS_INT_I2CRACK (0x01 << 26)
//#define MANTIS_INT_GPIF (0xff << 12) /* #define MANTIS_INT_GPIF (0xff << 12) */
#define MANTIS_INT_PCMCIA7 (0x01 << 19) #define MANTIS_INT_PCMCIA7 (0x01 << 19)
#define MANTIS_INT_PCMCIA6 (0x01 << 18) #define MANTIS_INT_PCMCIA6 (0x01 << 18)
......
...@@ -93,7 +93,7 @@ int lgtdqcs001f_tuner_set(struct dvb_frontend *fe, ...@@ -93,7 +93,7 @@ int lgtdqcs001f_tuner_set(struct dvb_frontend *fe,
u32 div; u32 div;
struct i2c_msg msg = {.addr = 0x61, .flags = 0, .buf = buf, .len = sizeof (buf) }; struct i2c_msg msg = {.addr = 0x61, .flags = 0, .buf = buf, .len = sizeof(buf)};
div = params->frequency / 250; div = params->frequency / 250;
...@@ -140,12 +140,12 @@ int lgtdqcs001f_set_symbol_rate(struct dvb_frontend *fe, ...@@ -140,12 +140,12 @@ int lgtdqcs001f_set_symbol_rate(struct dvb_frontend *fe,
aclk = 0xb4; aclk = 0xb4;
bclk = 0x51; bclk = 0x51;
} }
stv0299_writereg (fe, 0x13, aclk); stv0299_writereg(fe, 0x13, aclk);
stv0299_writereg (fe, 0x14, bclk); stv0299_writereg(fe, 0x14, bclk);
stv0299_writereg (fe, 0x1f, (ratio >> 16) & 0xff); stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff);
stv0299_writereg (fe, 0x20, (ratio >> 8) & 0xff); stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff);
stv0299_writereg (fe, 0x21, (ratio ) & 0xf0); stv0299_writereg(fe, 0x21, ratio & 0xf0);
return 0; return 0;
} }
......
...@@ -62,7 +62,7 @@ int vp1034_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage) ...@@ -62,7 +62,7 @@ int vp1034_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
dprintk(MANTIS_ERROR, 1, "Frontend (dummy) POWERDOWN"); dprintk(MANTIS_ERROR, 1, "Frontend (dummy) POWERDOWN");
break; break;
default: default:
dprintk(MANTIS_ERROR, 1, "Invalid = (%d)", (u32 ) voltage); dprintk(MANTIS_ERROR, 1, "Invalid = (%d)", (u32) voltage);
return -EINVAL; return -EINVAL;
} }
mmwrite(0x00, MANTIS_GPIF_DOUT); mmwrite(0x00, MANTIS_GPIF_DOUT);
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
static const struct stb0899_s1_reg vp1041_stb0899_s1_init_1[] = { static const struct stb0899_s1_reg vp1041_stb0899_s1_init_1[] = {
// 0x0000000b , /* SYSREG */ /* 0x0000000b, *//* SYSREG */
{ STB0899_DEV_ID , 0x30 }, { STB0899_DEV_ID , 0x30 },
{ STB0899_DISCNTRL1 , 0x32 }, { STB0899_DISCNTRL1 , 0x32 },
{ STB0899_DISCNTRL2 , 0x80 }, { STB0899_DISCNTRL2 , 0x80 },
...@@ -55,7 +55,7 @@ static const struct stb0899_s1_reg vp1041_stb0899_s1_init_1[] = { ...@@ -55,7 +55,7 @@ static const struct stb0899_s1_reg vp1041_stb0899_s1_init_1[] = {
{ STB0899_DISSTATUS , 0x20 }, { STB0899_DISSTATUS , 0x20 },
{ STB0899_DISF22 , 0x99 }, { STB0899_DISF22 , 0x99 },
{ STB0899_DISF22RX , 0xa8 }, { STB0899_DISF22RX , 0xa8 },
//SYSREG ? /* SYSREG ? */
{ STB0899_ACRPRESC , 0x11 }, { STB0899_ACRPRESC , 0x11 },
{ STB0899_ACRDIV1 , 0x0a }, { STB0899_ACRDIV1 , 0x0a },
{ STB0899_ACRDIV2 , 0x05 }, { STB0899_ACRDIV2 , 0x05 },
...@@ -323,9 +323,8 @@ static int vp1041_frontend_init(struct mantis_pci *mantis, struct dvb_frontend * ...@@ -323,9 +323,8 @@ static int vp1041_frontend_init(struct mantis_pci *mantis, struct dvb_frontend *
vp1041_stb0899_config.demod_address); vp1041_stb0899_config.demod_address);
if (stb6100_attach(mantis->fe, &vp1041_stb6100_config, adapter)) { if (stb6100_attach(mantis->fe, &vp1041_stb6100_config, adapter)) {
if (!lnbp21_attach(mantis->fe, adapter, 0, 0)) { if (!lnbp21_attach(mantis->fe, adapter, 0, 0))
printk("%s: No LNBP21 found!\n", __func__); dprintk(MANTIS_ERROR, 1, "No LNBP21 found!");
}
} }
} else { } else {
return -EREMOTEIO; return -EREMOTEIO;
......
...@@ -71,7 +71,7 @@ static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe, struct dvb_fronten ...@@ -71,7 +71,7 @@ static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe, struct dvb_fronten
struct i2c_adapter *adapter = &mantis->adapter; struct i2c_adapter *adapter = &mantis->adapter;
u8 buf[6]; u8 buf[6];
struct i2c_msg msg = {.addr = 0x60, .flags = 0, .buf = buf, .len = sizeof (buf) }; struct i2c_msg msg = {.addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf)};
int i; int i;
#define CU1216_IF 36125000 #define CU1216_IF 36125000
......
...@@ -53,7 +53,7 @@ static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe, struct dvb_fronten ...@@ -53,7 +53,7 @@ static int tda1002x_cu1216_tuner_set(struct dvb_frontend *fe, struct dvb_fronten
struct i2c_adapter *adapter = &mantis->adapter; struct i2c_adapter *adapter = &mantis->adapter;
u8 buf[6]; u8 buf[6];
struct i2c_msg msg = {.addr = 0x60,.flags = 0,.buf = buf,.len = sizeof (buf) }; struct i2c_msg msg = {.addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf)};
int i; int i;
#define CU1216_IF 36125000 #define CU1216_IF 36125000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment