Return valid tuner ID even when tuner is not detected properly. Fixes FS#11791

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_8@29379 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Chicoine 2011-02-22 14:03:04 +00:00
parent 2122eb8fb3
commit e9b8b5ba17

View file

@ -33,6 +33,6 @@ int tuner_detect_type(void)
if (rda5802_detect()) {
return RDA5802;
}
return 0;
return RDA5802;
}