david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[infiniband] Fix TID magic signature

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2010-09-11 14:09:54 +01:00
parent 50da1122e6
commit e6519af60d
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define IB_MI_NUM_CQES 8
/** TID magic signature */
#define IB_MI_TID_MAGIC ( ( 'g' << 24 ) | ( 'P' << 16 ) | ( 'X' << 8 ) | 'E' )
#define IB_MI_TID_MAGIC ( ( 'i' << 24 ) | ( 'P' << 16 ) | ( 'X' << 8 ) | 'E' )
/** TID to use for next MAD */
static unsigned int next_tid;