diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2013-05-23 14:58:57 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2013-05-23 14:58:57 -0400 |
commit | 9b65f8e658768b14ae917341f57d774f729447fe (patch) | |
tree | 483c0a3a387e14977d2b9c384f181e0f18ac81bd | |
parent | 6e211ab3ac36cf792f6412cd61b8336c12533778 (diff) | |
download | rockbox-9b65f8e.tar.gz rockbox-9b65f8e.zip |
Fix 6e211ab errors and warnings.
If target has HW tone controls but no HW prescaler (non-implemented or
non-existent), audiohw_set_prescaler() should, for now, do nothing.
Change-Id: If1b1a36970dca82fda1c350fbaa4d6ce068a6d32
-rw-r--r-- | firmware/drivers/audio/audiohw-swcodec.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/drivers/audio/audiohw-swcodec.c b/firmware/drivers/audio/audiohw-swcodec.c index 6c86bdfaa4..b627c1eeff 100644 --- a/firmware/drivers/audio/audiohw-swcodec.c +++ b/firmware/drivers/audio/audiohw-swcodec.c @@ -54,7 +54,13 @@ void audiohw_set_treble(int value) #ifndef AUDIOHW_HAVE_PRESCALER void audiohw_set_prescaler(int value) { +#ifdef HAVE_SW_TONE_CONTROLS tone_set_prescale(value); +#endif + /* FIXME: Should PGA be used if HW tone controls but no HW prescaler? + Callback-based implementation would have had no prescaling at all + so just do nothing for now, changing nothing. */ + (void)value; } #endif /* AUDIOHW_HAVE_PRESCALER */ |