Skip to content
Snippets Groups Projects
Commit 6f1d7210 authored by Steve Wise's avatar Steve Wise Committed by David S. Miller
Browse files

cxgb4: use the correct max size for firmware flash


The wrong max fw size was being used and causing false
"too big" errors running ethtool -f.

Signed-off-by: default avatarSteve Wise <swise@opengridcomputing.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8564ae09
No related branches found
No related tags found
No related merge requests found
......@@ -682,7 +682,7 @@ enum {
SF_RD_ID = 0x9f, /* read ID */
SF_ERASE_SECTOR = 0xd8, /* erase sector */
FW_MAX_SIZE = 512 * 1024,
FW_MAX_SIZE = 16 * SF_SEC_SIZE,
};
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment