This changes the switch statement checking the frame header of the pointer,
c as a pointer to a structure of type,dtv_frontend_properties to set the
variable,interval correctly in the switch statement for checking the frame
header as part of this structure pointer,c for this function correctly as
required by the cases in this switch statement.
Signed-off-by: Nicholas Krause <xerofoify@xxxxxxxxx>
---
drivers/media/dvb-frontends/hd29l2.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/media/dvb-frontends/hd29l2.c b/drivers/media/dvb-frontends/hd29l2.c
index d7b9d54..3d1a013 100644
--- a/drivers/media/dvb-frontends/hd29l2.c
+++ b/drivers/media/dvb-frontends/hd29l2.c
@@ -635,15 +635,15 @@ static int hd29l2_get_frontend(struct dvb_frontend *fe)
switch ((buf[1] >> 0) & 0x03) {
case 0: /* PN945 */
str_guard_interval = "PN945";
- c->guard_interval = GUARD_INTERVAL_AUTO; /* FIXME */
+ c->guard_interval = GUARD_INTERVAL_PN945;
break;
case 1: /* PN595 */
str_guard_interval = "PN595";
- c->guard_interval = GUARD_INTERVAL_AUTO; /* FIXME */
+ c->guard_interval = GUARD_INTERVAL_PN595;
break;
case 2: /* PN420 */
str_guard_interval = "PN420";
- c->guard_interval = GUARD_INTERVAL_AUTO; /* FIXME */
+ c->guard_interval = GUARD_INTERVAL_PN420;
break;
default:
str_guard_interval = "?";