V4L/DVB (4389): Remove duplication _release() op.
authorAndrew de Quincey <adq_dvb@lidskialf.net>
Tue, 8 Aug 2006 12:10:09 +0000 (09:10 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Tue, 26 Sep 2006 14:53:26 +0000 (11:53 -0300)
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>
drivers/media/dvb/frontends/tda1004x.c

index 478d977354077c7b6a02bc81af9a332c4009f1e4..11e0dca9a2d7307de9e1a6648eedd4311844f9f1 100644 (file)
@@ -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);
@@ -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,
@@ -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,