From 20d92bb7f301932d7e3e509d48034d9d5e57fee0 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Tue, 22 Jun 2010 16:13:16 +0000 Subject: Fix wrong comments in tuner-clipplus.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27056 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/as3525/sansa-clipplus/tuner-clipplus.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'firmware/target') diff --git a/firmware/target/arm/as3525/sansa-clipplus/tuner-clipplus.c b/firmware/target/arm/as3525/sansa-clipplus/tuner-clipplus.c index 650f68dc8b..3e911c2e13 100644 --- a/firmware/target/arm/as3525/sansa-clipplus/tuner-clipplus.c +++ b/firmware/target/arm/as3525/sansa-clipplus/tuner-clipplus.c @@ -7,8 +7,7 @@ * \/ \/ \/ \/ \/ * $Id$ * - * Multi-tuner detection module to select between the si4700 and a yet - * unidentified Silicon Labs FM tuner chip found in some Sansa Clip+ players. + * Multi-tuner detection module to select between the Si4700 and the RDA5802 * * Copyright (C) 2010 Bertrik Sikken * @@ -25,14 +24,15 @@ #include #include "tuner.h" +/* return the detected tuner type */ int tuner_detect_type(void) { if (si4700_detect()) { return SI4700; - } else if (rda5802_detect()) { + } + if (rda5802_detect()) { return RDA5802; - } else { - return 0; } + return 0; } -- cgit v1.2.3