summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-01-22 10:50:11 +0000
committerThomas Martitz <kugel@rockbox.org>2009-01-22 10:50:11 +0000
commit81df953da55e75632b5efbe676f2b348e11b2c4b (patch)
tree65bd98e7d86fb21310e26f87c30a9723a9b45894
parent311d2f12ed024cf11971f23231e05a0143361115 (diff)
downloadrockbox-81df953da55e75632b5efbe676f2b348e11b2c4b.tar.gz
rockbox-81df953da55e75632b5efbe676f2b348e11b2c4b.zip
Rename software backlight fading files, as we don't call it thread fading. Correct a copyright info too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19818 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/SOURCES2
-rw-r--r--firmware/backlight-sw-fading.c (renamed from firmware/backlight-thread-fading.c)2
-rw-r--r--firmware/backlight.c2
-rw-r--r--firmware/export/backlight-sw-fading.h (renamed from firmware/export/backlight-thread-fading.h)2
4 files changed, 4 insertions, 4 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 7169a669e8..bce384e1c8 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -97,7 +97,7 @@ drivers/lcd-remote-2bit-vi.c
97#endif /* HAVE_REMOTE_LCD */ 97#endif /* HAVE_REMOTE_LCD */
98 98
99#ifdef USE_BACKLIGHT_SW_FADING 99#ifdef USE_BACKLIGHT_SW_FADING
100backlight-thread-fading.c 100backlight-sw-fading.c
101#endif /* USE_BACKLIGHT_SW_FADING */ 101#endif /* USE_BACKLIGHT_SW_FADING */
102 102
103/* Misc. */ 103/* Misc. */
diff --git a/firmware/backlight-thread-fading.c b/firmware/backlight-sw-fading.c
index a1afc091d3..d7987567ce 100644
--- a/firmware/backlight-thread-fading.c
+++ b/firmware/backlight-sw-fading.c
@@ -25,7 +25,7 @@
25#include "config.h" 25#include "config.h"
26#include "system.h" 26#include "system.h"
27#include "backlight.h" 27#include "backlight.h"
28#include "backlight-thread-fading.h" 28#include "backlight-sw-fading.h"
29 29
30/* To adapt a target do: 30/* To adapt a target do:
31 * - make sure _backlight_on doesn't set the brightness to something other than 31 * - make sure _backlight_on doesn't set the brightness to something other than
diff --git a/firmware/backlight.c b/firmware/backlight.c
index f0a0bb518b..c598a9528f 100644
--- a/firmware/backlight.c
+++ b/firmware/backlight.c
@@ -53,7 +53,7 @@ int backlight_brightness = DEFAULT_BRIGHTNESS_SETTING;
53#endif 53#endif
54 54
55#ifdef USE_BACKLIGHT_SW_FADING 55#ifdef USE_BACKLIGHT_SW_FADING
56#include "backlight-thread-fading.h" 56#include "backlight-sw-fading.h"
57#endif 57#endif
58#ifdef SIMULATOR 58#ifdef SIMULATOR
59/* TODO: find a better way to do it but we need a kernel thread somewhere to 59/* TODO: find a better way to do it but we need a kernel thread somewhere to
diff --git a/firmware/export/backlight-thread-fading.h b/firmware/export/backlight-sw-fading.h
index 2a676ef63c..54f732709a 100644
--- a/firmware/export/backlight-thread-fading.h
+++ b/firmware/export/backlight-sw-fading.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2007 by Will Robertson 10 * Copyright (C) 2008 by Thomas Martitz
11 * 11 *
12 * This program is free software; you can redistribute it and/or 12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License 13 * modify it under the terms of the GNU General Public License