Skip to content

Commit

Permalink
V4L/DVB (6191): Removed a redundant switch()
Browse files Browse the repository at this point in the history
The switch() statement is no longer required.

Signed-off-by: Steven Toth <stoth@hauppauge.com>
Reviewed-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Steven Toth authored and Mauro Carvalho Chehab committed Oct 10, 2007
1 parent fc959be commit bfde287
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions drivers/media/video/cx23885/cx23885-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1025,18 +1025,7 @@ static int cx23885_start_dma(struct cx23885_tsport *port,

cx_write(port->reg_hw_sop_ctrl, 0x47 << 16 | 188 << 4);
cx_write(port->reg_ts_clk_en, port->ts_clk_en_val);

switch (dev->board) {
case CX23885_BOARD_HAUPPAUGE_HVR1250:
case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
case CX23885_BOARD_HAUPPAUGE_HVR1800:
cx_write(port->reg_vld_misc, 0x00);
dprintk(1, "%s() Configuring HVR1800/lp/1500 board\n",
__FUNCTION__);
break;
default:
printk(KERN_ERR "%s() error, default case", __FUNCTION__ );
}
cx_write(port->reg_vld_misc, 0x00);

cx_write(port->reg_gen_ctrl, port->gen_ctrl_val);
udelay(100);
Expand Down

0 comments on commit bfde287

Please sign in to comment.