smaller changes to silence build warnings. (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2893 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
124e4a45ca
commit
a9e5821fdd
|
@ -13,6 +13,11 @@
|
||||||
#define is_digit isdigit
|
#define is_digit isdigit
|
||||||
#define isxdigit(c) (((c) >= '0' && (c) <= '9') || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F'))
|
#define isxdigit(c) (((c) >= '0' && (c) <= '9') || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F'))
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
/* We are using number() instead. So this code is obsoleted and should
|
||||||
|
* probably go away.
|
||||||
|
*/
|
||||||
|
|
||||||
static unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base)
|
static unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base)
|
||||||
{
|
{
|
||||||
unsigned long result = 0,value;
|
unsigned long result = 0,value;
|
||||||
|
@ -44,7 +49,7 @@ static long simple_strtol(const char *cp,char **endp,unsigned int base)
|
||||||
return -simple_strtoul(cp+1,endp,base);
|
return -simple_strtoul(cp+1,endp,base);
|
||||||
return simple_strtoul(cp,endp,base);
|
return simple_strtoul(cp,endp,base);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int skip_atoi(const char **s)
|
static int skip_atoi(const char **s)
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
|
|
||||||
static void pci_init(struct device *dev)
|
static void pci_init(struct device *dev)
|
||||||
{
|
{
|
||||||
uint32_t reg32;
|
|
||||||
uint16_t reg16;
|
uint16_t reg16;
|
||||||
|
|
||||||
/* Clear system errors */
|
/* Clear system errors */
|
||||||
|
|
|
@ -217,7 +217,7 @@ int main(int argc, char **argv)
|
||||||
struct cmos_entries *ce;
|
struct cmos_entries *ce;
|
||||||
struct cmos_enums *c_enums, *c_enums_start;
|
struct cmos_enums *c_enums, *c_enums_start;
|
||||||
struct cmos_checksum *cs;
|
struct cmos_checksum *cs;
|
||||||
unsigned char line[INPUT_LINE_MAX];
|
char line[INPUT_LINE_MAX];
|
||||||
unsigned char uc;
|
unsigned char uc;
|
||||||
int entry_mode=0;
|
int entry_mode=0;
|
||||||
int enum_mode=0;
|
int enum_mode=0;
|
||||||
|
@ -229,7 +229,7 @@ int main(int argc, char **argv)
|
||||||
int entries_length;
|
int entries_length;
|
||||||
int enum_length;
|
int enum_length;
|
||||||
int len;
|
int len;
|
||||||
unsigned char buf[16];
|
char buf[16];
|
||||||
|
|
||||||
for(i=1;i<argc;i++) {
|
for(i=1;i<argc;i++) {
|
||||||
if(argv[i][0]!='-') {
|
if(argv[i][0]!='-') {
|
||||||
|
@ -332,7 +332,7 @@ int main(int argc, char **argv)
|
||||||
fprintf(stderr, "Error - Length is to long in line \n%s\n",line);
|
fprintf(stderr, "Error - Length is to long in line \n%s\n",line);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
if (!is_ident(ce->name)) {
|
if (!is_ident((char *)ce->name)) {
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"Error - Name %s is an invalid identifier in line\n %s\n",
|
"Error - Name %s is an invalid identifier in line\n %s\n",
|
||||||
ce->name, line);
|
ce->name, line);
|
||||||
|
@ -341,7 +341,7 @@ int main(int argc, char **argv)
|
||||||
/* put in the record type */
|
/* put in the record type */
|
||||||
ce->tag=LB_TAG_OPTION;
|
ce->tag=LB_TAG_OPTION;
|
||||||
/* calculate and save the record length */
|
/* calculate and save the record length */
|
||||||
len=strlen(ce->name)+1;
|
len=strlen((char *)ce->name)+1;
|
||||||
/* make the record int aligned */
|
/* make the record int aligned */
|
||||||
if(len%4)
|
if(len%4)
|
||||||
len+=(4-(len%4));
|
len+=(4-(len%4));
|
||||||
|
@ -541,7 +541,7 @@ int main(int argc, char **argv)
|
||||||
if (ce->config == 'r') {
|
if (ce->config == 'r') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!is_ident(ce->name)) {
|
if (!is_ident((char *)ce->name)) {
|
||||||
fprintf(stderr, "Invalid identifier: %s\n",
|
fprintf(stderr, "Invalid identifier: %s\n",
|
||||||
ce->name);
|
ce->name);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Reference in New Issue