summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/bidi.c2
-rw-r--r--firmware/font.c2
-rw-r--r--firmware/kernel.c2
-rw-r--r--firmware/sound.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/firmware/bidi.c b/firmware/bidi.c
index e6a4341..2f4e137 100644
--- a/firmware/bidi.c
+++ b/firmware/bidi.c
@@ -159,7 +159,7 @@ unsigned short *bidi_l2v(const unsigned char *str, int orientation)
#ifdef BOOTLOADER
(void)orientation;
return utf16_buf;
-
+
#else /* !BOOTLOADER */
if (target == utf16_buf) /* empty string */
return target;
diff --git a/firmware/font.c b/firmware/font.c
index 858a312..a8734e9 100644
--- a/firmware/font.c
+++ b/firmware/font.c
@@ -578,7 +578,7 @@ void font_init(void)
struct font* font_get(int font)
{
(void)font;
- return &sysfont;
+ return &sysfont;
}
/*
diff --git a/firmware/kernel.c b/firmware/kernel.c
index fbc5a29..29907f3 100644
--- a/firmware/kernel.c
+++ b/firmware/kernel.c
@@ -260,7 +260,7 @@ void sleep(int ticks)
switch_thread();
#elif defined(CREATIVE_ZVx) && defined(BOOTLOADER)
/* hacky.. */
- long sleep_ticks = current_tick + ticks + 1;
+ long sleep_ticks = current_tick + ticks + 1;
while (TIME_BEFORE(current_tick, sleep_ticks))
switch_thread();
#else
diff --git a/firmware/sound.c b/firmware/sound.c
index 7c97d9b..d66a93a 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -253,7 +253,7 @@ static void set_prescaled_volume(void)
|| defined(HAVE_AK4537) || defined(HAVE_UDA1341)
audiohw_set_master_vol(tenthdb2master(l), tenthdb2master(r));
#if defined(HAVE_WM8975) || defined(HAVE_WM8758) \
- || (defined(HAVE_WM8751) && !defined(MROBE_100)) || defined(HAVE_WM8985)
+ || (defined(HAVE_WM8751) && !defined(MROBE_100)) || defined(HAVE_WM8985)
audiohw_set_lineout_vol(tenthdb2master(0), tenthdb2master(0));
#endif