aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common/siano/smsdvb-main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/common/siano/smsdvb-main.c')
-rw-r--r--drivers/media/common/siano/smsdvb-main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/common/siano/smsdvb-main.c b/drivers/media/common/siano/smsdvb-main.c
index 367b8e77feb8..f4305ae800f4 100644
--- a/drivers/media/common/siano/smsdvb-main.c
+++ b/drivers/media/common/siano/smsdvb-main.c
@@ -753,7 +753,7 @@ static inline int led_feedback(struct smsdvb_client_t *client)
753 SMS_LED_HI : SMS_LED_LO); 753 SMS_LED_HI : SMS_LED_LO);
754} 754}
755 755
756static int smsdvb_read_status(struct dvb_frontend *fe, fe_status_t *stat) 756static int smsdvb_read_status(struct dvb_frontend *fe, enum fe_status *stat)
757{ 757{
758 int rc; 758 int rc;
759 struct smsdvb_client_t *client; 759 struct smsdvb_client_t *client;
@@ -900,7 +900,7 @@ static int smsdvb_dvbt_set_frontend(struct dvb_frontend *fe)
900 /* Disable LNA, if any. An error is returned if no LNA is present */ 900 /* Disable LNA, if any. An error is returned if no LNA is present */
901 ret = sms_board_lna_control(client->coredev, 0); 901 ret = sms_board_lna_control(client->coredev, 0);
902 if (ret == 0) { 902 if (ret == 0) {
903 fe_status_t status; 903 enum fe_status status;
904 904
905 /* tune with LNA off at first */ 905 /* tune with LNA off at first */
906 ret = smsdvb_sendrequest_and_wait(client, &msg, sizeof(msg), 906 ret = smsdvb_sendrequest_and_wait(client, &msg, sizeof(msg),
@@ -971,7 +971,7 @@ static int smsdvb_isdbt_set_frontend(struct dvb_frontend *fe)
971 /* Disable LNA, if any. An error is returned if no LNA is present */ 971 /* Disable LNA, if any. An error is returned if no LNA is present */
972 ret = sms_board_lna_control(client->coredev, 0); 972 ret = sms_board_lna_control(client->coredev, 0);
973 if (ret == 0) { 973 if (ret == 0) {
974 fe_status_t status; 974 enum fe_status status;
975 975
976 /* tune with LNA off at first */ 976 /* tune with LNA off at first */
977 ret = smsdvb_sendrequest_and_wait(client, &msg, sizeof(msg), 977 ret = smsdvb_sendrequest_and_wait(client, &msg, sizeof(msg),