Commit 279203ab authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] sn: Fix a couple of compiler warnings

From: Pat Gefre <pfg@sgi.com>

Fix a couple of compiler warnings
parent 29277173
...@@ -63,7 +63,7 @@ xswitch_info_vhdl_set(xswitch_info_t xswitch_info, ...@@ -63,7 +63,7 @@ xswitch_info_vhdl_set(xswitch_info_t xswitch_info,
if (port > XSWITCH_CENSUS_PORT_MAX) if (port > XSWITCH_CENSUS_PORT_MAX)
return; return;
xswitch_info->vhdl[port] = xwidget; xswitch_info->vhdl[(int)port] = xwidget;
} }
vertex_hdl_t vertex_hdl_t
...@@ -73,7 +73,7 @@ xswitch_info_vhdl_get(xswitch_info_t xswitch_info, ...@@ -73,7 +73,7 @@ xswitch_info_vhdl_get(xswitch_info_t xswitch_info,
if (port > XSWITCH_CENSUS_PORT_MAX) if (port > XSWITCH_CENSUS_PORT_MAX)
return GRAPH_VERTEX_NONE; return GRAPH_VERTEX_NONE;
return xswitch_info->vhdl[port]; return xswitch_info->vhdl[(int)port];
} }
/* /*
...@@ -89,7 +89,7 @@ xswitch_info_master_assignment_set(xswitch_info_t xswitch_info, ...@@ -89,7 +89,7 @@ xswitch_info_master_assignment_set(xswitch_info_t xswitch_info,
if (port > XSWITCH_CENSUS_PORT_MAX) if (port > XSWITCH_CENSUS_PORT_MAX)
return; return;
xswitch_info->master_vhdl[port] = master_vhdl; xswitch_info->master_vhdl[(int)port] = master_vhdl;
} }
vertex_hdl_t vertex_hdl_t
...@@ -99,7 +99,7 @@ xswitch_info_master_assignment_get(xswitch_info_t xswitch_info, ...@@ -99,7 +99,7 @@ xswitch_info_master_assignment_get(xswitch_info_t xswitch_info,
if (port > XSWITCH_CENSUS_PORT_MAX) if (port > XSWITCH_CENSUS_PORT_MAX)
return GRAPH_VERTEX_NONE; return GRAPH_VERTEX_NONE;
return xswitch_info->master_vhdl[port]; return xswitch_info->master_vhdl[(int)port];
} }
void void
......
...@@ -430,7 +430,6 @@ sn_cpu_init(void) ...@@ -430,7 +430,6 @@ sn_cpu_init(void)
void void
scan_for_ionodes(void) { scan_for_ionodes(void) {
int nasid = 0; int nasid = 0;
lboard_t *brd;
/* Setup ionodes with memory */ /* Setup ionodes with memory */
for (nasid = 0; nasid < MAX_PHYSNODE_ID; nasid +=2) { for (nasid = 0; nasid < MAX_PHYSNODE_ID; nasid +=2) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment