Skip to content

Commit

Permalink
V4L/DVB (4389): Remove duplication _release() op.
Browse files Browse the repository at this point in the history
I added a duplicate method during one of the previous dvb_attach attempts.
This removes the unnecessary duplication.

Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Acked-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Andrew de Quincey authored and Mauro Carvalho Chehab committed Sep 26, 2006
1 parent 1f10c7a commit 2a514de
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions drivers/media/dvb/frontends/tda1004x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1195,13 +1195,7 @@ static int tda1004x_get_tune_settings(struct dvb_frontend* fe, struct dvb_fronte
return 0;
}

static void tda10045_release(struct dvb_frontend* fe)
{
struct tda1004x_state *state = fe->demodulator_priv;
kfree(state);
}

static void tda10046_release(struct dvb_frontend* fe)
static void tda1004x_release(struct dvb_frontend* fe)
{
struct tda1004x_state *state = fe->demodulator_priv;
kfree(state);
Expand All @@ -1221,7 +1215,7 @@ static struct dvb_frontend_ops tda10045_ops = {
FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
},

.release = tda10045_release,
.release = tda1004x_release,

.init = tda10045_init,
.sleep = tda1004x_sleep,
Expand Down Expand Up @@ -1280,7 +1274,7 @@ static struct dvb_frontend_ops tda10046_ops = {
FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO
},

.release = tda10046_release,
.release = tda1004x_release,

.init = tda10046_init,
.sleep = tda1004x_sleep,
Expand Down

0 comments on commit 2a514de

Please sign in to comment.