diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-02-04 06:54:25 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-02-04 13:27:17 -0500 |
commit | 83a74ff8e63e39d8122ff17ac000064605884127 (patch) | |
tree | a9e11801bbabcb4e330a43f51cfb27ff7a5ec6ff | |
parent | 2ea9a08d59b99fbb257bcd8c47e2cbc8be136f8c (diff) |
[media] siano: remove get_frontend stub
There's nothing at siano's get_frontend() callback. So,
remove it, as the core will handle it.
Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r-- | drivers/media/common/siano/smsdvb-main.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/media/common/siano/smsdvb-main.c b/drivers/media/common/siano/smsdvb-main.c index d31f468830cf..9148e14c9d07 100644 --- a/drivers/media/common/siano/smsdvb-main.c +++ b/drivers/media/common/siano/smsdvb-main.c | |||
@@ -1015,12 +1015,6 @@ static int smsdvb_set_frontend(struct dvb_frontend *fe) | |||
1015 | } | 1015 | } |
1016 | } | 1016 | } |
1017 | 1017 | ||
1018 | /* Nothing to do here, as stats are automatically updated */ | ||
1019 | static int smsdvb_get_frontend(struct dvb_frontend *fe) | ||
1020 | { | ||
1021 | return 0; | ||
1022 | } | ||
1023 | |||
1024 | static int smsdvb_init(struct dvb_frontend *fe) | 1018 | static int smsdvb_init(struct dvb_frontend *fe) |
1025 | { | 1019 | { |
1026 | struct smsdvb_client_t *client = | 1020 | struct smsdvb_client_t *client = |
@@ -1069,7 +1063,6 @@ static struct dvb_frontend_ops smsdvb_fe_ops = { | |||
1069 | .release = smsdvb_release, | 1063 | .release = smsdvb_release, |
1070 | 1064 | ||
1071 | .set_frontend = smsdvb_set_frontend, | 1065 | .set_frontend = smsdvb_set_frontend, |
1072 | .get_frontend = smsdvb_get_frontend, | ||
1073 | .get_tune_settings = smsdvb_get_tune_settings, | 1066 | .get_tune_settings = smsdvb_get_tune_settings, |
1074 | 1067 | ||
1075 | .read_status = smsdvb_read_status, | 1068 | .read_status = smsdvb_read_status, |