Browse Source

[infiniband] Fix TID magic signature

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 14 years ago
parent
commit
e6519af60d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/net/infiniband/ib_mi.c

+ 1
- 1
src/net/infiniband/ib_mi.c View File

55
 #define IB_MI_NUM_CQES 8
55
 #define IB_MI_NUM_CQES 8
56
 
56
 
57
 /** TID magic signature */
57
 /** TID magic signature */
58
-#define IB_MI_TID_MAGIC ( ( 'g' << 24 ) | ( 'P' << 16 ) | ( 'X' << 8 ) | 'E' )
58
+#define IB_MI_TID_MAGIC ( ( 'i' << 24 ) | ( 'P' << 16 ) | ( 'X' << 8 ) | 'E' )
59
 
59
 
60
 /** TID to use for next MAD */
60
 /** TID to use for next MAD */
61
 static unsigned int next_tid;
61
 static unsigned int next_tid;

Loading…
Cancel
Save