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/media/dvb/dvb-core | |
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/media/dvb/dvb-core')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_frontend.c | 2 | ||||
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_frontend.h | 2 |
2 files changed, 2 insertions, 2 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); |