summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/ata_flash.c2
-rw-r--r--firmware/drivers/lcd-charset-player.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/ata_flash.c b/firmware/drivers/ata_flash.c
index 96ea1cfa68..fbdd7f04ee 100644
--- a/firmware/drivers/ata_flash.c
+++ b/firmware/drivers/ata_flash.c
@@ -42,7 +42,7 @@
42 42
43#define SECTOR_SIZE (512) 43#define SECTOR_SIZE (512)
44 44
45long last_disk_activity = -1; 45static long last_disk_activity = -1;
46 46
47#if CONFIG_FLASH == FLASH_IFP7XX 47#if CONFIG_FLASH == FLASH_IFP7XX
48static unsigned char flash_ce[4] = {0x20, 0x02, 0x10, 0x08}; 48static unsigned char flash_ce[4] = {0x20, 0x02, 0x10, 0x08};
diff --git a/firmware/drivers/lcd-charset-player.c b/firmware/drivers/lcd-charset-player.c
index 68404c6230..b1f6f6dae2 100644
--- a/firmware/drivers/lcd-charset-player.c
+++ b/firmware/drivers/lcd-charset-player.c
@@ -115,7 +115,7 @@ enum {
115#endif 115#endif
116}; 116};
117 117
118const struct xchar_info xchar_info_newlcd[] = { 118static const struct xchar_info xchar_info_newlcd[] = {
119 /* Standard ascii */ 119 /* Standard ascii */
120 { 0x20, 0, 0, 0x20 }, /* */ 120 { 0x20, 0, 0, 0x20 }, /* */
121 { 0x21, 0, 0, 0x21 }, /* ! */ 121 { 0x21, 0, 0, 0x21 }, /* ! */
@@ -641,7 +641,7 @@ const struct xchar_info xchar_info_newlcd[] = {
641 { 0xfffd, 0, 0, 0x91 }, 641 { 0xfffd, 0, 0, 0x91 },
642}; 642};
643 643
644const struct xchar_info xchar_info_oldlcd[] = { 644static const struct xchar_info xchar_info_oldlcd[] = {
645 /* Standard ascii */ 645 /* Standard ascii */
646 { 0x20, 0, 0, 0x24 }, /* */ 646 { 0x20, 0, 0, 0x24 }, /* */
647 { 0x21, 0, 0, 0x25 }, /* ! */ 647 { 0x21, 0, 0, 0x25 }, /* ! */