mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 14:42:36 +02:00
Constify parameters and globals
This makes some stuff const (partially to get a more convenient libflashrom interface). Corresponding to flashrom svn r1639. Signed-off-by: Nico Huber <nico.huber@secunet.com> Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
parent
6282966cc0
commit
bcb2e5a708
@ -532,7 +532,7 @@ out:
|
||||
free(layoutfile);
|
||||
free(pparam);
|
||||
/* clean up global variables */
|
||||
free(chip_to_probe);
|
||||
free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
|
||||
chip_to_probe = NULL;
|
||||
#ifndef STANDALONE
|
||||
ret |= close_logfile();
|
||||
|
4
flash.h
4
flash.h
@ -222,7 +222,7 @@ void print_supported_wiki(void);
|
||||
extern int verbose_screen;
|
||||
extern int verbose_logfile;
|
||||
extern const char flashrom_version[];
|
||||
extern char *chip_to_probe;
|
||||
extern const char *chip_to_probe;
|
||||
void map_flash_registers(struct flashctx *flash);
|
||||
int read_memmapped(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int erase_flash(struct flashctx *flash);
|
||||
@ -231,7 +231,7 @@ int read_flash_to_file(struct flashctx *flash, const char *filename);
|
||||
int min(int a, int b);
|
||||
int max(int a, int b);
|
||||
void tolower_string(char *str);
|
||||
char *extract_param(char **haystack, const char *needle, const char *delim);
|
||||
char *extract_param(const char *const *haystack, const char *needle, const char *delim);
|
||||
int verify_range(struct flashctx *flash, uint8_t *cmpbuf, unsigned int start, unsigned int len);
|
||||
int need_erase(uint8_t *have, uint8_t *want, unsigned int len, enum write_granularity gran);
|
||||
char *strcat_realloc(char *dest, const char *src);
|
||||
|
@ -40,13 +40,13 @@
|
||||
#include "hwaccess.h"
|
||||
|
||||
const char flashrom_version[] = FLASHROM_VERSION;
|
||||
char *chip_to_probe = NULL;
|
||||
const char *chip_to_probe = NULL;
|
||||
int verbose_screen = MSG_INFO;
|
||||
int verbose_logfile = MSG_DEBUG2;
|
||||
|
||||
static enum programmer programmer = PROGRAMMER_INVALID;
|
||||
|
||||
static char *programmer_param = NULL;
|
||||
static const char *programmer_param = NULL;
|
||||
|
||||
/*
|
||||
* Programmers supporting multiple buses can have differing size limits on
|
||||
@ -351,7 +351,7 @@ int register_shutdown(int (*function) (void *data), void *data)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int programmer_init(enum programmer prog, char *param)
|
||||
int programmer_init(enum programmer prog, const char *param)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@ -517,7 +517,7 @@ char *strcat_realloc(char *dest, const char *src)
|
||||
* needle and remove everything from the first occurrence of needle to the next
|
||||
* delimiter from haystack.
|
||||
*/
|
||||
char *extract_param(char **haystack, const char *needle, const char *delim)
|
||||
char *extract_param(const char *const *haystack, const char *needle, const char *delim)
|
||||
{
|
||||
char *param_pos, *opt_pos, *rest;
|
||||
char *opt = NULL;
|
||||
|
@ -122,7 +122,7 @@ struct programmer_entry {
|
||||
|
||||
extern const struct programmer_entry programmer_table[];
|
||||
|
||||
int programmer_init(enum programmer prog, char *param);
|
||||
int programmer_init(enum programmer prog, const char *param);
|
||||
int programmer_shutdown(void);
|
||||
|
||||
enum bitbang_spi_master_type {
|
||||
|
Loading…
x
Reference in New Issue
Block a user