diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2009-08-06 09:28:25 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-08-06 09:28:25 +0000 |
| commit | d767883a417667ceebf5bb241d02337f34bc8016 (patch) | |
| tree | 7136c4a1fd24d01176d3790e4b5d49f39cd6267b /firmware/target/coldfire/iriver | |
| parent | 0307cd16a094b9b03da8fbcf237470ce2ad75cf7 (diff) | |
| download | rockbox-d767883a417667ceebf5bb241d02337f34bc8016.zip rockbox-d767883a417667ceebf5bb241d02337f34bc8016.tar.gz rockbox-d767883a417667ceebf5bb241d02337f34bc8016.tar.bz2 rockbox-d767883a417667ceebf5bb241d02337f34bc8016.tar.xz | |
Various files: make functions static if they're local or make sure there is a proper #include if not
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22184 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire/iriver')
| -rw-r--r-- | firmware/target/coldfire/iriver/h100/backlight-h100.c | 2 | ||||
| -rw-r--r-- | firmware/target/coldfire/iriver/h300/backlight-h300.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/coldfire/iriver/h100/backlight-h100.c b/firmware/target/coldfire/iriver/h100/backlight-h100.c index 1b61f31..47c02cb 100644 --- a/firmware/target/coldfire/iriver/h100/backlight-h100.c +++ b/firmware/target/coldfire/iriver/h100/backlight-h100.c @@ -21,9 +21,9 @@ #include "config.h" #include "cpu.h" #include "kernel.h" -#include "thread.h" #include "system.h" #include "backlight.h" +#include "backlight-target.h" #include "lcd.h" /* Returns the current state of the backlight (true=ON, false=OFF). */ diff --git a/firmware/target/coldfire/iriver/h300/backlight-h300.c b/firmware/target/coldfire/iriver/h300/backlight-h300.c index 7f63e75..64e09b9 100644 --- a/firmware/target/coldfire/iriver/h300/backlight-h300.c +++ b/firmware/target/coldfire/iriver/h300/backlight-h300.c @@ -24,6 +24,7 @@ #include "thread.h" #include "system.h" #include "backlight.h" +#include "backlight-target.h" #include "pcf50606.h" #include "lcd.h" |