david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

fix gcc 4.2.1 warning: discards qualifiers from pointer target type

This commit is contained in:
Holger Lubitz 2007-07-31 18:43:09 +02:00 committed by Michael Brown
parent fdd5fbe3ae
commit 857c5db4dd
1 changed files with 4 additions and 4 deletions

View File

@ -259,7 +259,7 @@ static struct velocity_info_tbl chip_info_table[] = {
*/ */
static void velocity_set_int_opt(int *opt, int val, int min, int max, static void velocity_set_int_opt(int *opt, int val, int min, int max,
int def, char *name, char *devname) int def, char *name, const char *devname)
{ {
if (val == -1) { if (val == -1) {
printf("%s: set value of parameter %s to %d\n", printf("%s: set value of parameter %s to %d\n",
@ -292,7 +292,7 @@ static void velocity_set_int_opt(int *opt, int val, int min, int max,
*/ */
static void velocity_set_bool_opt(u32 * opt, int val, int def, u32 flag, static void velocity_set_bool_opt(u32 * opt, int val, int def, u32 flag,
char *name, char *devname) char *name, const char *devname)
{ {
(*opt) &= (~flag); (*opt) &= (~flag);
if (val == -1) { if (val == -1) {
@ -322,7 +322,7 @@ static void velocity_set_bool_opt(u32 * opt, int val, int def, u32 flag,
*/ */
static void velocity_get_options(struct velocity_opt *opts, int index, static void velocity_get_options(struct velocity_opt *opts, int index,
char *devname) const char *devname)
{ {
/* FIXME Do the options need to be configurable */ /* FIXME Do the options need to be configurable */
@ -708,7 +708,7 @@ static int velocity_probe( struct nic *nic, struct pci_device *pci)
DBG ( "%s: %s at ioaddr %#hX\n", pci->driver_name, eth_ntoa ( nic->node_addr ), DBG ( "%s: %s at ioaddr %#hX\n", pci->driver_name, eth_ntoa ( nic->node_addr ),
(unsigned int) BASE ); (unsigned int) BASE );
velocity_get_options(&vptr->options, 0, (char *) pci->driver_name); velocity_get_options(&vptr->options, 0, pci->driver_name);
/* /*
* Mask out the options cannot be set to the chip * Mask out the options cannot be set to the chip