Commit 21a44763 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller

cxgb4: missing curly braces in t4_setup_debugfs()

There were missing curly braces so it means we call add_debugfs_mem()
unintentionally.

Fixes: 3ccc6cf7 ('cxgb4: Adds support for T6 adapter')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7a76a021
...@@ -2332,11 +2332,12 @@ int t4_setup_debugfs(struct adapter *adap) ...@@ -2332,11 +2332,12 @@ int t4_setup_debugfs(struct adapter *adap)
EXT_MEM1_SIZE_G(size)); EXT_MEM1_SIZE_G(size));
} }
} else { } else {
if (i & EXT_MEM_ENABLE_F) if (i & EXT_MEM_ENABLE_F) {
size = t4_read_reg(adap, MA_EXT_MEMORY_BAR_A); size = t4_read_reg(adap, MA_EXT_MEMORY_BAR_A);
add_debugfs_mem(adap, "mc", MEM_MC, add_debugfs_mem(adap, "mc", MEM_MC,
EXT_MEM_SIZE_G(size)); EXT_MEM_SIZE_G(size));
} }
}
de = debugfs_create_file_size("flash", S_IRUSR, adap->debugfs_root, adap, de = debugfs_create_file_size("flash", S_IRUSR, adap->debugfs_root, adap,
&flash_debugfs_fops, adap->params.sf_size); &flash_debugfs_fops, adap->params.sf_size);
......
Markdown is supported
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