diff options
author | Tiago Vignatti <tiago.vignatti@nokia.com> | 2010-04-21 18:28:13 +0300 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-04-21 16:16:26 -0700 |
commit | 35d208125fa0ec78e8d694adc52886b977e789cf (patch) | |
tree | 880aaaef32c78d17b95ab979e23a7dffd648e5e4 | |
parent | 7ac6a6b7d0dfc5e021270b2898accd3425aa008a (diff) |
xfree86: fix not reached code in fi1236 driver from i2c
This issue was introduced in the first dump of the code in 2004. I haven't
check what's the correct fix for it so I simply kept the behaviour of someone
calling this and removed the unreachable code.
Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/xfree86/i2c/fi1236.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/xfree86/i2c/fi1236.c b/hw/xfree86/i2c/fi1236.c index 7c39edbee..61224eaa5 100644 --- a/hw/xfree86/i2c/fi1236.c +++ b/hw/xfree86/i2c/fi1236.c @@ -398,10 +398,6 @@ int TUNER_get_afc_hint(FI1236Ptr f) { if(f->afc_timer_installed)return TUNER_STILL_TUNING; return f->last_afc_hint; -if(f->type==TUNER_TYPE_MT2032) - return MT2032_get_afc_hint(f); - else - return FI1236_get_afc_hint(f); } static void MT2032_dump_status(FI1236Ptr f) |