diff options
| author | Thomas Jarosch <tomj@simonv.com> | 2015-01-11 21:40:51 +0100 |
|---|---|---|
| committer | Thomas Jarosch <tomj@simonv.com> | 2015-01-11 21:40:51 +0100 |
| commit | 2a3e1628a50b9de7c1462ee95eb79937795f5409 (patch) | |
| tree | 3c2c965007a71c4895a65d8a91252b9ce2255719 /firmware/drivers | |
| parent | 85c98bc63c6635fe9e337178f23faa9c0ec3f9fb (diff) | |
| download | rockbox-2a3e1628a50b9de7c1462ee95eb79937795f5409.zip rockbox-2a3e1628a50b9de7c1462ee95eb79937795f5409.tar.gz rockbox-2a3e1628a50b9de7c1462ee95eb79937795f5409.tar.bz2 rockbox-2a3e1628a50b9de7c1462ee95eb79937795f5409.tar.xz | |
Limit more variables to file scope
Change-Id: I30219d626316776eb73b4205d63376fa3dbc6361
Diffstat (limited to 'firmware/drivers')
| -rw-r--r-- | firmware/drivers/ata_flash.c | 2 | ||||
| -rw-r--r-- | firmware/drivers/lcd-charset-player.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/ata_flash.c b/firmware/drivers/ata_flash.c index 96ea1cf..fbdd7f0 100644 --- a/firmware/drivers/ata_flash.c +++ b/firmware/drivers/ata_flash.c @@ -42,7 +42,7 @@ #define SECTOR_SIZE (512) -long last_disk_activity = -1; +static long last_disk_activity = -1; #if CONFIG_FLASH == FLASH_IFP7XX static 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 68404c6..b1f6f6d 100644 --- a/firmware/drivers/lcd-charset-player.c +++ b/firmware/drivers/lcd-charset-player.c @@ -115,7 +115,7 @@ enum { #endif }; -const struct xchar_info xchar_info_newlcd[] = { +static const struct xchar_info xchar_info_newlcd[] = { /* Standard ascii */ { 0x20, 0, 0, 0x20 }, /* */ { 0x21, 0, 0, 0x21 }, /* ! */ @@ -641,7 +641,7 @@ const struct xchar_info xchar_info_newlcd[] = { { 0xfffd, 0, 0, 0x91 }, }; -const struct xchar_info xchar_info_oldlcd[] = { +static const struct xchar_info xchar_info_oldlcd[] = { /* Standard ascii */ { 0x20, 0, 0, 0x24 }, /* */ { 0x21, 0, 0, 0x25 }, /* ! */ |