summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-10-07 16:30:45 -0400
committerSteven Toth <stoth@linuxtv.org>2008-10-07 16:30:45 -0400
commitdf92010269289adcd89ced7550b514004c6896ad (patch)
treeab587de31cc7cf25264c8bffa4012e7b03c38eb6
parent67880ec1c0f0526b38c47b2cb93c0757bd1c0c18 (diff)
downloadmediapointer-dvb-s2-df92010269289adcd89ced7550b514004c6896ad.tar.gz
mediapointer-dvb-s2-df92010269289adcd89ced7550b514004c6896ad.tar.bz2
S2API: Ensure we have a reasonable ROLLOFF default
From: Darron Broad <darron@kewl.org> From the author: Non-initialised cache values get a reasonble default. Priority: normal Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Darron Broad <darron@kewl.org>
-rw-r--r--linux/include/linux/dvb/frontend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/include/linux/dvb/frontend.h b/linux/include/linux/dvb/frontend.h
index 79fb7bd86..72cb8ae55 100644
--- a/linux/include/linux/dvb/frontend.h
+++ b/linux/include/linux/dvb/frontend.h
@@ -315,9 +315,9 @@ typedef enum fe_pilot {
} fe_pilot_t;
typedef enum fe_rolloff {
+ ROLLOFF_35, /* Implied value in DVB-S, default for DVB-S2 */
ROLLOFF_20,
ROLLOFF_25,
- ROLLOFF_35,
ROLLOFF_AUTO,
} fe_rolloff_t;