summaryrefslogtreecommitdiff
path: root/roms/ipxe/src/drivers/net/myri10ge.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/ipxe/src/drivers/net/myri10ge.c')
-rw-r--r--roms/ipxe/src/drivers/net/myri10ge.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/roms/ipxe/src/drivers/net/myri10ge.c b/roms/ipxe/src/drivers/net/myri10ge.c
index 5bb555d82..ae6b6c21e 100644
--- a/roms/ipxe/src/drivers/net/myri10ge.c
+++ b/roms/ipxe/src/drivers/net/myri10ge.c
@@ -13,7 +13,8 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
****************************************************************/
FILE_LICENCE ( GPL2_ONLY );
@@ -304,10 +305,10 @@ static int myri10ge_command ( struct myri10ge_private *priv,
command->response_addr.high = 0;
command->response_addr.low
= htonl ( virt_to_bus ( &priv->dma->command_response ) );
- for ( i=0; i<36; i+=4 )
- * ( uint32 * ) &command->pad[i] = 0;
+ for ( i=0; i<9; i++ )
+ command->pad[i] = 0;
wmb();
- * ( uint32 * ) &command->pad[36] = 0;
+ command->pad[9] = 0;
/* Wait up to 2 seconds for a response. */
@@ -718,7 +719,7 @@ static int myri10ge_nv_init ( struct myri10ge_private *priv )
return 0;
}
- /* Initilize NonVolatile Storage state. */
+ /* Initialize NonVolatile Storage state. */
priv->nvs.word_len_log2 = 0;
priv->nvs.size = hdr.eeprom_len;