Make thirty functions static to reduce binary size

If any of those functions should be (unused) API functions,
they can easily be turned back once really needed.

Detected using a new cppcheck check that
uses the internal symbol database to catch
functions that are only used in the current file.

Change-Id: Ic2b1e5b8020b76397f11cefc4e205f3b7ac1f184
This commit is contained in:
Thomas Jarosch 2015-01-05 18:44:36 +01:00
parent c907e127f8
commit fdd4aef340
10 changed files with 30 additions and 30 deletions

View File

@ -110,7 +110,7 @@ static long long halsec[TRIG_TAB_SIZE]= {1,2,3};
#define SQRT2 ftofix(1.414213562373095048801688724209698) #define SQRT2 ftofix(1.414213562373095048801688724209698)
void imayer_fht(t_fixed *fz, int n) static void imayer_fht(t_fixed *fz, int n)
{ {
int k,k1,k2,k3,k4,kx; int k,k1,k2,k3,k4,kx;
t_fixed *fi,*fn,*gi; t_fixed *fi,*fn,*gi;

View File

@ -73,7 +73,7 @@ struct flash_disk
static struct flash_disk flash_disk; static struct flash_disk flash_disk;
void flash_select_chip(int no, int sel) static void flash_select_chip(int no, int sel)
{ {
#if CONFIG_FLASH == FLASH_IFP7XX #if CONFIG_FLASH == FLASH_IFP7XX
if (sel) if (sel)
@ -115,7 +115,7 @@ static void flash_wait_ready(void)
static unsigned char model_n_sectors_order[] = {0, 19, 20}; static unsigned char model_n_sectors_order[] = {0, 19, 20};
int flash_map_sector(int sector, int* chip, int* chip_sector) static int flash_map_sector(int sector, int* chip, int* chip_sector)
{ {
int ord, c; int ord, c;
if (flash_disk.model == FLASH_MODEL_NONE) if (flash_disk.model == FLASH_MODEL_NONE)
@ -132,7 +132,7 @@ int flash_map_sector(int sector, int* chip, int* chip_sector)
return 0; return 0;
} }
int flash_read_id(int no) { static int flash_read_id(int no) {
int id; int id;
flash_select_chip(no, 1); flash_select_chip(no, 1);
@ -146,7 +146,7 @@ int flash_read_id(int no) {
return id; return id;
} }
int flash_read_sector(int sector, unsigned char* buf, static int flash_read_sector(int sector, unsigned char* buf,
unsigned char* oob) unsigned char* oob)
{ {
unsigned long *bufl = (unsigned long *)buf; unsigned long *bufl = (unsigned long *)buf;
@ -204,7 +204,7 @@ int flash_read_sector(int sector, unsigned char* buf,
return 0; return 0;
} }
int flash_read_sector_oob(int sector, unsigned char* oob) static int flash_read_sector_oob(int sector, unsigned char* oob)
{ {
int chip, chip_sector; int chip, chip_sector;
int i; int i;
@ -294,7 +294,7 @@ static int flash_get_logical_block_no(unsigned char* oob)
return -1; return -1;
} }
int flash_disk_scan(void) static int flash_disk_scan(void)
{ {
int n_segments, n_phblocks; int n_segments, n_phblocks;
unsigned char oob[16]; unsigned char oob[16];
@ -327,7 +327,7 @@ int flash_disk_scan(void)
return 0; return 0;
} }
int flash_disk_find_block(int block) static int flash_disk_find_block(int block)
{ {
int seg, bmod, phb; int seg, bmod, phb;
unsigned char oob[16]; unsigned char oob[16];
@ -356,7 +356,7 @@ int flash_disk_find_block(int block)
return flash_disk.cur_phblock_start; return flash_disk.cur_phblock_start;
} }
int flash_disk_read_sectors(unsigned long start, static int flash_disk_read_sectors(unsigned long start,
int count, int count,
void* buf) void* buf)
{ {

View File

@ -81,7 +81,7 @@ bool add_event_ex(unsigned short id, bool oneshot, void (*handler)(unsigned shor
return do_add_event(id, oneshot, true, handler, user_data); return do_add_event(id, oneshot, true, handler, user_data);
} }
void do_remove_event(unsigned short id, bool user_data_valid, static void do_remove_event(unsigned short id, bool user_data_valid,
void *handler, void *user_data) void *handler, void *user_data)
{ {
int i; int i;

View File

@ -250,7 +250,7 @@ static inline void usb_select_setup_endpoint(void)
ISP1582_EPINDEX = 0x20; ISP1582_EPINDEX = 0x20;
} }
void usb_setup_endpoint(int idx, int max_pkt_size, int type) static void usb_setup_endpoint(int idx, int max_pkt_size, int type)
{ {
struct usb_endpoint *ep; struct usb_endpoint *ep;
@ -271,7 +271,7 @@ void usb_setup_endpoint(int idx, int max_pkt_size, int type)
ep->max_pkt_size[epidx_dir(idx)] = max_pkt_size; ep->max_pkt_size[epidx_dir(idx)] = max_pkt_size;
} }
void usb_disable_endpoint(int idx) static void usb_disable_endpoint(int idx)
{ {
usb_select_endpoint(idx); usb_select_endpoint(idx);
ISP1582_EPTYPE &= 8; ISP1582_EPTYPE &= 8;
@ -288,12 +288,12 @@ void usb_reconnect(void)
ISP1582_MODE |= 1; /* SOFTCT on */ ISP1582_MODE |= 1; /* SOFTCT on */
} }
void usb_cleanup(void) static void usb_cleanup(void)
{ {
ISP1582_MODE &= ~1; /* SOFTCT off */ ISP1582_MODE &= ~1; /* SOFTCT off */
} }
void usb_setup(int reset) static void usb_setup(int reset)
{ {
int i; int i;
@ -840,7 +840,7 @@ static void usb_handle_int(int i)
} }
void usb_handle_interrupts(void) static void usb_handle_interrupts(void)
{ {
#ifdef LCD_DEBUG #ifdef LCD_DEBUG
char s[20]; char s[20];
@ -1002,7 +1002,7 @@ static void serial_free_out_fifo(int ep, unsigned char *buf, int len)
serial_restart_output(ep); serial_restart_output(ep);
} }
void usb_serial_handle(void) static void usb_serial_handle(void)
{ {
#ifdef BUTTONS #ifdef BUTTONS
static int t = 0; static int t = 0;

View File

@ -69,7 +69,7 @@ UINT32 Read32(UINT8* pByte)
} }
UINT32 CalcCRC32 (const UINT8* buf, UINT32 len) static UINT32 CalcCRC32 (const UINT8* buf, UINT32 len)
{ {
static const UINT32 crc_table[256] = static const UINT32 crc_table[256] =
{ // CRC32 lookup table for polynomial 0x04C11DB7 { // CRC32 lookup table for polynomial 0x04C11DB7
@ -127,7 +127,7 @@ UINT32 CalcCRC32 (const UINT8* buf, UINT32 len)
} }
UINT32 PlaceImage(char* filename, UINT32 pos, UINT8* pFirmware, UINT32 limit) static UINT32 PlaceImage(char* filename, UINT32 pos, UINT8* pFirmware, UINT32 limit)
{ {
UINT32 size, read; UINT32 size, read;
FILE* pFile; FILE* pFile;

View File

@ -21,7 +21,7 @@ int main(void);
tpMain start_vector[] __attribute__ ((section (".startvector"))) = {main}; tpMain start_vector[] __attribute__ ((section (".startvector"))) = {main};
UINT8 uart_read(void) static UINT8 uart_read(void)
{ {
UINT8 byte; UINT8 byte;
while (!(SSR1 & SCI_RDRF)); // wait for char to be available while (!(SSR1 & SCI_RDRF)); // wait for char to be available
@ -31,7 +31,7 @@ UINT8 uart_read(void)
} }
void uart_write(UINT8 byte) static void uart_write(UINT8 byte)
{ {
while (!(SSR1 & SCI_TDRE)); // wait for transmit buffer empty while (!(SSR1 & SCI_TDRE)); // wait for transmit buffer empty
TDR1 = byte; TDR1 = byte;

View File

@ -1142,7 +1142,7 @@ static struct skin_element* skin_parse_code_as_arg(const char** document)
} }
/* Memory management */ /* Memory management */
struct skin_element* skin_alloc_element() static struct skin_element* skin_alloc_element()
{ {
struct skin_element* retval = (struct skin_element*) struct skin_element* retval = (struct skin_element*)
skin_buffer_alloc(sizeof(struct skin_element)); skin_buffer_alloc(sizeof(struct skin_element));
@ -1164,7 +1164,7 @@ struct skin_element* skin_alloc_element()
* enough for any tag. params should be used straight away by the callback * enough for any tag. params should be used straight away by the callback
* so this is safe. * so this is safe.
*/ */
struct skin_tag_parameter* skin_alloc_params(int count) static struct skin_tag_parameter* skin_alloc_params(int count)
{ {
size_t size = sizeof(struct skin_tag_parameter) * count; size_t size = sizeof(struct skin_tag_parameter) * count;
return (struct skin_tag_parameter*)skin_buffer_alloc(size); return (struct skin_tag_parameter*)skin_buffer_alloc(size);
@ -1176,7 +1176,7 @@ char* skin_alloc_string(int length)
return (char*)skin_buffer_alloc(sizeof(char) * (length + 1)); return (char*)skin_buffer_alloc(sizeof(char) * (length + 1));
} }
OFFSETTYPE(struct skin_element*)* skin_alloc_children(int count) static OFFSETTYPE(struct skin_element*)* skin_alloc_children(int count)
{ {
return (OFFSETTYPE(struct skin_element*)*) return (OFFSETTYPE(struct skin_element*)*)
skin_buffer_alloc(sizeof(struct skin_element*) * count); skin_buffer_alloc(sizeof(struct skin_element*) * count);

View File

@ -160,9 +160,9 @@ struct skin_element* skin_parse(const char* document,
struct skin_element* skin_parse(const char* document); struct skin_element* skin_parse(const char* document);
#endif #endif
/* Memory management functions */ /* Memory management functions */
struct skin_element* skin_alloc_element(void); static struct skin_element* skin_alloc_element(void);
OFFSETTYPE(struct skin_element*)* skin_alloc_children(int count); static OFFSETTYPE(struct skin_element*)* skin_alloc_children(int count);
struct skin_tag_parameter* skin_alloc_params(int count); static struct skin_tag_parameter* skin_alloc_params(int count);
char* skin_alloc_string(int length); char* skin_alloc_string(int length);
void skin_free_tree(struct skin_element* root); void skin_free_tree(struct skin_element* root);

View File

@ -89,7 +89,7 @@ void skip_tag(const char** document)
skip_enumlist(document); skip_enumlist(document);
} }
void skip_arglist(const char** document) static void skip_arglist(const char** document)
{ {
if(**document == ARGLISTOPENSYM) if(**document == ARGLISTOPENSYM)
(*document)++; (*document)++;
@ -106,7 +106,7 @@ void skip_arglist(const char** document)
(*document)++; (*document)++;
} }
void skip_enumlist(const char** document) static void skip_enumlist(const char** document)
{ {
if(**document == ENUMLISTOPENSYM) if(**document == ENUMLISTOPENSYM)
(*document)++; (*document)++;

View File

@ -31,8 +31,8 @@ extern "C"
/* Scanning functions */ /* Scanning functions */
void skip_tag(const char** document); void skip_tag(const char** document);
void skip_comment(const char** document); void skip_comment(const char** document);
void skip_arglist(const char** document); static void skip_arglist(const char** document);
void skip_enumlist(const char** document); static void skip_enumlist(const char** document);
char* scan_string(const char** document); char* scan_string(const char** document);
int scan_int(const char** document); int scan_int(const char** document);
int check_viewport(const char* document); /* Checks for a viewport declaration */ int check_viewport(const char* document); /* Checks for a viewport declaration */