-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 150034 b: refs/heads/master c: 94a78b7 h: refs/heads/master v: v3
- Loading branch information
Vladislav Zolotarov
authored and
David S. Miller
committed
Apr 27, 2009
1 parent
96d7150
commit 6ca2fa0
Showing
9 changed files
with
867 additions
and
599 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ec9323f417e803f07a99a15a9cfb207662ad2c55 | ||
refs/heads/master: 94a78b79cb5f14c09a42522738d6694c6a1cdd20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* bnx2x_fw_file_hdr.h: FW binary file header structure. | ||
* | ||
* Copyright (c) 2007-2009 Broadcom Corporation | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation. | ||
* | ||
* Maintained by: Eilon Greenstein <eilong@broadcom.com> | ||
* Written by: Vladislav Zolotarov <vladz@broadcom.com> | ||
* Based on the original idea of John Wright <john.wright@hp.com>. | ||
*/ | ||
|
||
#ifndef BNX2X_INIT_FILE_HDR_H | ||
#define BNX2X_INIT_FILE_HDR_H | ||
|
||
struct bnx2x_fw_file_section { | ||
__be32 len; | ||
__be32 offset; | ||
}; | ||
|
||
struct bnx2x_fw_file_hdr { | ||
struct bnx2x_fw_file_section init_ops; | ||
struct bnx2x_fw_file_section init_ops_offsets; | ||
struct bnx2x_fw_file_section init_data; | ||
struct bnx2x_fw_file_section tsem_int_table_data; | ||
struct bnx2x_fw_file_section tsem_pram_data; | ||
struct bnx2x_fw_file_section usem_int_table_data; | ||
struct bnx2x_fw_file_section usem_pram_data; | ||
struct bnx2x_fw_file_section csem_int_table_data; | ||
struct bnx2x_fw_file_section csem_pram_data; | ||
struct bnx2x_fw_file_section xsem_int_table_data; | ||
struct bnx2x_fw_file_section xsem_pram_data; | ||
struct bnx2x_fw_file_section fw_version; | ||
}; | ||
|
||
#endif /* BNX2X_INIT_FILE_HDR_H */ |
Oops, something went wrong.