diff options
author | Michael Hunold <devnull@localhost> | 2004-08-24 16:12:55 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2004-08-24 16:12:55 +0000 |
commit | a30c4341e56cf7b4bec3effe65f4e6e8d5c90d8f (patch) | |
tree | 28f0fbfd79c12b84b988548b23a68be84ff1a9eb /linux/drivers | |
parent | 210c9b82e8ef3cde258bc506cfdff6472a1fc0ad (diff) | |
download | mediapointer-dvb-s2-a30c4341e56cf7b4bec3effe65f4e6e8d5c90d8f.tar.gz mediapointer-dvb-s2-a30c4341e56cf7b4bec3effe65f4e6e8d5c90d8f.tar.bz2 |
- replace dvb_unregister_frontend_new() with dvb_unregister_frontend()
Diffstat (limited to 'linux/drivers')
20 files changed, 20 insertions, 20 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c index b92043f34..3929e90c8 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c @@ -1179,7 +1179,7 @@ dvb_register_frontend (int (*ioctl) (struct dvb_frontend *frontend, return 0; } -int dvb_unregister_frontend_new (int (*ioctl) (struct dvb_frontend *frontend, +int dvb_unregister_frontend (int (*ioctl) (struct dvb_frontend *frontend, unsigned int cmd, void *arg), struct dvb_adapter *dvb_adapter) { diff --git a/linux/drivers/media/dvb/dvb-core/dvb_frontend.h b/linux/drivers/media/dvb/dvb-core/dvb_frontend.h index 439dbd5f7..ee701f4d5 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.h +++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.h @@ -105,7 +105,7 @@ dvb_register_frontend (int (*ioctl) (struct dvb_frontend *frontend, struct module *module); extern int -dvb_unregister_frontend_new (int (*ioctl) (struct dvb_frontend *frontend, +dvb_unregister_frontend (int (*ioctl) (struct dvb_frontend *frontend, unsigned int cmd, void *arg), struct dvb_adapter *dvb_adapter); diff --git a/linux/drivers/media/dvb/frontends/alps_tdlb7.c b/linux/drivers/media/dvb/frontends/alps_tdlb7.c index 3645b9edf..3987a1f1b 100644 --- a/linux/drivers/media/dvb/frontends/alps_tdlb7.c +++ b/linux/drivers/media/dvb/frontends/alps_tdlb7.c @@ -688,7 +688,7 @@ static int detach_client(struct i2c_client *client) dprintk ("%s\n", __FUNCTION__); - dvb_unregister_frontend_new (tdlb7_ioctl, state->dvb); + dvb_unregister_frontend (tdlb7_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/alps_tdmb7.c b/linux/drivers/media/dvb/frontends/alps_tdmb7.c index 4802964f9..e07db4bb1 100644 --- a/linux/drivers/media/dvb/frontends/alps_tdmb7.c +++ b/linux/drivers/media/dvb/frontends/alps_tdmb7.c @@ -467,7 +467,7 @@ static int detach_client (struct i2c_client *client) dprintk ("%s\n", __FUNCTION__); - dvb_unregister_frontend_new (tdmb7_ioctl, state->dvb); + dvb_unregister_frontend (tdmb7_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/at76c651.c b/linux/drivers/media/dvb/frontends/at76c651.c index 32556dc52..a41e3ce05 100644 --- a/linux/drivers/media/dvb/frontends/at76c651.c +++ b/linux/drivers/media/dvb/frontends/at76c651.c @@ -508,7 +508,7 @@ static int detach_client(struct i2c_client *client) { struct at76c651_state *state = i2c_get_clientdata(client); - dvb_unregister_frontend_new(at76c651_ioctl, state->dvb); + dvb_unregister_frontend(at76c651_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/cx24110.c b/linux/drivers/media/dvb/frontends/cx24110.c index 6f1efb975..ac4ac26bc 100644 --- a/linux/drivers/media/dvb/frontends/cx24110.c +++ b/linux/drivers/media/dvb/frontends/cx24110.c @@ -708,7 +708,7 @@ static int detach_client (struct i2c_client *client) { struct cx24110_state *state = i2c_get_clientdata(client); - dvb_unregister_frontend_new(cx24110_ioctl, state->dvb); + dvb_unregister_frontend(cx24110_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/dst.c b/linux/drivers/media/dvb/frontends/dst.c index b45541bec..42d1ad28b 100644 --- a/linux/drivers/media/dvb/frontends/dst.c +++ b/linux/drivers/media/dvb/frontends/dst.c @@ -1190,7 +1190,7 @@ static int detach_client(struct i2c_client *client) { struct dst_data *state = (struct dst_data *) i2c_get_clientdata(client); - dvb_unregister_frontend_new(dst_ioctl, state->dvb); + dvb_unregister_frontend(dst_ioctl, state->dvb); device_remove_file(&client->dev, &dev_attr_client_type); device_remove_file(&client->dev, &dev_attr_client_flags); diff --git a/linux/drivers/media/dvb/frontends/dvb_dummy_fe.c b/linux/drivers/media/dvb/frontends/dvb_dummy_fe.c index c0df3632d..977f20823 100644 --- a/linux/drivers/media/dvb/frontends/dvb_dummy_fe.c +++ b/linux/drivers/media/dvb/frontends/dvb_dummy_fe.c @@ -207,7 +207,7 @@ static int dvbdummyfe_detach_client(struct i2c_client *client) { struct dvb_adapter *dvb = i2c_get_clientdata(client); - dvb_unregister_frontend_new(dvbdummyfe_ioctl, dvb); + dvb_unregister_frontend(dvbdummyfe_ioctl, dvb); i2c_detach_client(client); kfree(client); return 0; diff --git a/linux/drivers/media/dvb/frontends/grundig_29504-401.c b/linux/drivers/media/dvb/frontends/grundig_29504-401.c index f65deb115..e007ec37a 100644 --- a/linux/drivers/media/dvb/frontends/grundig_29504-401.c +++ b/linux/drivers/media/dvb/frontends/grundig_29504-401.c @@ -684,7 +684,7 @@ static int l64781_detach_client(struct i2c_client *client) { struct l64781_state *state = i2c_get_clientdata(client); - dvb_unregister_frontend_new(l64781_ioctl, state->dvb); + dvb_unregister_frontend(l64781_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/grundig_29504-491.c b/linux/drivers/media/dvb/frontends/grundig_29504-491.c index 4604df7e5..53ea55bea 100644 --- a/linux/drivers/media/dvb/frontends/grundig_29504-491.c +++ b/linux/drivers/media/dvb/frontends/grundig_29504-491.c @@ -490,7 +490,7 @@ static int tda8083_detach_client(struct i2c_client *client) { struct tda8083_state *state = i2c_get_clientdata(client); - dvb_unregister_frontend_new (tda8083_ioctl, state->dvb); + dvb_unregister_frontend (tda8083_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/mt312.c b/linux/drivers/media/dvb/frontends/mt312.c index a687cd484..267991a2f 100644 --- a/linux/drivers/media/dvb/frontends/mt312.c +++ b/linux/drivers/media/dvb/frontends/mt312.c @@ -845,7 +845,7 @@ static int mt312_detach_client(struct i2c_client *client) dprintk ("%s\n", __FUNCTION__); - dvb_unregister_frontend_new (mt312_ioctl, state->dvb); + dvb_unregister_frontend (mt312_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/mt352.c b/linux/drivers/media/dvb/frontends/mt352.c index 4d9025628..f855d7dfa 100644 --- a/linux/drivers/media/dvb/frontends/mt352.c +++ b/linux/drivers/media/dvb/frontends/mt352.c @@ -840,7 +840,7 @@ static int mt352_detach_client(struct i2c_client *client) { struct mt352_state *state = i2c_get_clientdata(client); - dvb_unregister_frontend_new (mt352_ioctl, state->dvb); + dvb_unregister_frontend (mt352_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/nxt6000.c b/linux/drivers/media/dvb/frontends/nxt6000.c index a0de801a5..7983b55fd 100644 --- a/linux/drivers/media/dvb/frontends/nxt6000.c +++ b/linux/drivers/media/dvb/frontends/nxt6000.c @@ -791,7 +791,7 @@ out: static int detach_client(struct i2c_client *client) { struct nxt6000_config *state = (struct nxt6000_config *) i2c_get_clientdata(client); - dvb_unregister_frontend_new(nxt6000_ioctl, state->dvb); + dvb_unregister_frontend(nxt6000_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/sp887x.c b/linux/drivers/media/dvb/frontends/sp887x.c index e9548e53d..80ac0f13a 100644 --- a/linux/drivers/media/dvb/frontends/sp887x.c +++ b/linux/drivers/media/dvb/frontends/sp887x.c @@ -648,7 +648,7 @@ static int detach_client(struct i2c_client *client) dprintk ("%s\n", __FUNCTION__); - dvb_unregister_frontend_new (sp887x_ioctl, state->dvb); + dvb_unregister_frontend (sp887x_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/stv0299.c b/linux/drivers/media/dvb/frontends/stv0299.c index d3d6ccc99..4d701c3ea 100644 --- a/linux/drivers/media/dvb/frontends/stv0299.c +++ b/linux/drivers/media/dvb/frontends/stv0299.c @@ -1414,7 +1414,7 @@ static int detach_client(struct i2c_client *client) { struct stv0299_state *state = (struct stv0299_state*)i2c_get_clientdata(client); - dvb_unregister_frontend_new (uni0299_ioctl, state->dvb); + dvb_unregister_frontend (uni0299_ioctl, state->dvb); i2c_detach_client(client); kfree(client); kfree(state); diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c index 8442405f4..c3640cd3b 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.c +++ b/linux/drivers/media/dvb/frontends/tda1004x.c @@ -1548,7 +1548,7 @@ static int detach_client(struct i2c_client *client) dprintk ("%s\n", __FUNCTION__); - dvb_unregister_frontend_new (tda1004x_ioctl, state->dvb); + dvb_unregister_frontend (tda1004x_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/frontends/ves1820.c b/linux/drivers/media/dvb/frontends/ves1820.c index 81be6180c..8e2a56d33 100644 --- a/linux/drivers/media/dvb/frontends/ves1820.c +++ b/linux/drivers/media/dvb/frontends/ves1820.c @@ -575,7 +575,7 @@ static int attach_adapter(struct i2c_adapter *adapter) static int detach_client(struct i2c_client *client) { struct ves1820_state *state = (struct ves1820_state *) i2c_get_clientdata(client); - dvb_unregister_frontend_new(ves1820_ioctl, state->dvb); + dvb_unregister_frontend(ves1820_ioctl, state->dvb); device_remove_file(&client->dev, &dev_attr_client_name); i2c_detach_client(client); BUG_ON(state->dvb); diff --git a/linux/drivers/media/dvb/frontends/ves1x93.c b/linux/drivers/media/dvb/frontends/ves1x93.c index 497164011..3c78c5706 100644 --- a/linux/drivers/media/dvb/frontends/ves1x93.c +++ b/linux/drivers/media/dvb/frontends/ves1x93.c @@ -650,7 +650,7 @@ static int attach_adapter(struct i2c_adapter *adapter) static int detach_client(struct i2c_client *client) { struct ves1x93_state *state = (struct ves1x93_state*)i2c_get_clientdata(client); - dvb_unregister_frontend_new(ves1x93_ioctl, state->dvb); + dvb_unregister_frontend(ves1x93_ioctl, state->dvb); i2c_detach_client(client); BUG_ON(state->dvb); kfree(client); diff --git a/linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c b/linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c index 3ed39ed1b..0288723ab 100644 --- a/linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c +++ b/linux/drivers/media/dvb/ttusb-dec/ttusb_dec.c @@ -1686,7 +1686,7 @@ static void ttusb_dec_init_frontend(struct ttusb_dec *dec) static void ttusb_dec_exit_frontend(struct ttusb_dec *dec) { - dvb_unregister_frontend_new(dec->frontend_ioctl, dec->adapter); + dvb_unregister_frontend(dec->frontend_ioctl, dec->adapter); } static void ttusb_dec_init_filters(struct ttusb_dec *dec) diff --git a/linux/drivers/media/dvb/vp7041/vp7041.c b/linux/drivers/media/dvb/vp7041/vp7041.c index 750441dec..9742d97d9 100644 --- a/linux/drivers/media/dvb/vp7041/vp7041.c +++ b/linux/drivers/media/dvb/vp7041/vp7041.c @@ -824,7 +824,7 @@ static int vp7041_frontend_init(struct usb_vp7041 *vp) static void vp7041_frontend_exit(struct usb_vp7041 *vp) { - dvb_unregister_frontend_new(vp7041_ioctl, vp->adapter); + dvb_unregister_frontend(vp7041_ioctl, vp->adapter); } static int vp7041_exit (struct usb_vp7041 *vp) |