aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/net/intelxl.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2022-08-08 14:57:40 +0100
committerMichael Brown <mcb30@ipxe.org>2022-08-11 14:53:57 +0100
commitfb69d1400269b60d80fc949f84a519e403c58f0e (patch)
treeee8018921ab33db0077d695e47dac9e38673c7e6 /src/drivers/net/intelxl.c
parentc220b93f3145b10cf9b2a10a52bac4ee1252992f (diff)
downloadipxe-fb69d1400269b60d80fc949f84a519e403c58f0e.tar.gz
[intelxl] Separate virtual function driver definitions
Move knowledge of the virtual function data structures and admin command definitions from intelxl.h to intelxlvf.h. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net/intelxl.c')
-rw-r--r--src/drivers/net/intelxl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/net/intelxl.c b/src/drivers/net/intelxl.c
index e31595e1c..51e888a60 100644
--- a/src/drivers/net/intelxl.c
+++ b/src/drivers/net/intelxl.c
@@ -360,8 +360,8 @@ int intelxl_admin_command ( struct intelxl_nic *intelxl ) {
buf = &admin->buf[ index % INTELXL_ADMIN_NUM_DESC ];
DBGC2 ( intelxl, "INTELXL %p admin command %#x opcode %#04x",
intelxl, index, le16_to_cpu ( cmd->opcode ) );
- if ( cmd->vopcode )
- DBGC2 ( intelxl, "/%#08x", le32_to_cpu ( cmd->vopcode ) );
+ if ( cmd->cookie )
+ DBGC2 ( intelxl, "/%#08x", le32_to_cpu ( cmd->cookie ) );
DBGC2 ( intelxl, ":\n" );
/* Sanity checks */
@@ -378,7 +378,7 @@ int intelxl_admin_command ( struct intelxl_nic *intelxl ) {
}
/* Populate cookie, if not being (ab)used for VF opcode */
- if ( ! cmd->vopcode )
+ if ( ! cmd->cookie )
cmd->cookie = cpu_to_le32 ( index );
/* Record cookie */