1
0
Fork 0
forked from len0rd/rockbox

Fix more reds.

Change-Id: I4b58dda0953b7f9799238c32b78037b0a5403c04
This commit is contained in:
Thomas Martitz 2014-03-03 20:26:08 +01:00
parent c245de029d
commit 68768260e8
11 changed files with 22 additions and 13 deletions

View file

@ -25,7 +25,9 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "system.h"
#include "kernel.h"
#include "string.h"
#include "audio.h"

View file

@ -25,8 +25,10 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "logf.h"
#include "system.h"
#include "kernel.h"
#include "string.h"
#include "audio.h"
#include "sound.h"

View file

@ -18,8 +18,10 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "config.h"
#include "system.h"
#include "kernel.h"
#include "string.h"
#include "button.h"
#include "lcd.h"

View file

@ -18,8 +18,10 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "config.h"
#include "system.h"
#include "kernel.h"
#include "backlight.h"
#include "mc13783.h"
#include "backlight-target.h"

View file

@ -19,14 +19,16 @@
* KIND, either express or implied.
*
****************************************************************************/
#include "config.h"
#include "system.h"
#include "kernel.h"
#include "thread.h"
#include "mc13783.h"
#include "iomuxc-imx31.h"
#include "gpio-imx31.h"
#include "i2c-imx31.h"
#include "fmradio_i2c.h"
#include "thread.h"
#include "rds.h"
#include "tuner.h"

View file

@ -18,11 +18,13 @@
* KIND, either express or implied.
*
****************************************************************************/
#ifdef BOOTLOADER
#include <string.h> /* memset */
#endif
#include "config.h"
#include "system.h"
#include "kernel.h"
#include "lcd.h"
#include "lcd-target.h"
#include "backlight-target.h"

View file

@ -18,9 +18,11 @@
* KIND, either express or implied.
*
****************************************************************************/
#include <stdlib.h>
#include "config.h"
#include "system.h"
#include "kernel.h"
#include "thread.h"
#include "mc13783.h"
#include "adc.h"

View file

@ -23,7 +23,6 @@
#include "system-arm.h"
#include "mmu-arm.h"
#include "kernel.h"
/* High enough for most tasks but low enough for reduced voltage */
#define CPUFREQ_DEFAULT 264000000

View file

@ -22,6 +22,7 @@
#define I2C_IMX31_H
#include <stdbool.h>
#include "semaphore.h"
/* I2C module usage masks */
#define USE_I2C1_MODULE (1 << 0)

View file

@ -21,6 +21,7 @@
****************************************************************************/
#include "system.h"
#include "kernel.h"
#include "button.h"
#include "backlight.h"
#include "powermgmt.h"

View file

@ -625,13 +625,7 @@ static void ci_logf(const char *fmt, ...)
}
#endif
static void ci_yield(void)
{
}
static void commit_dcache(void) {}
static void commit_discard_dcache(void) {}
static void commit_discard_idcache(void) {}
static void stub_void_void(void) { }
static struct codec_api ci = {
@ -654,7 +648,7 @@ static struct codec_api ci = {
ci_should_loop,
ci_sleep,
ci_yield,
stub_void_void, /* yield */
#if NUM_CORES > 1
ci_create_thread,
@ -665,9 +659,9 @@ static struct codec_api ci = {
ci_semaphore_release,
#endif
commit_dcache,
commit_discard_dcache,
commit_discard_idcache,
stub_void_void, /* commit_dcache */
stub_void_void, /* commit_discard_dcache */
stub_void_void, /* commit_discard_idcache */
/* strings and memory */
strcpy,