提交 7aee42c6 编写于 作者: A Andy Shevchenko 提交者: David S. Miller

cxgb3: re-use native hex2bin()

Call hex2bin() library function instead of doing conversion here.
Signed-off-by: NAndy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 51487ae7
...@@ -727,9 +727,9 @@ static int get_vpd_params(struct adapter *adapter, struct vpd_params *p) ...@@ -727,9 +727,9 @@ static int get_vpd_params(struct adapter *adapter, struct vpd_params *p)
p->xauicfg[1] = simple_strtoul(vpd.xaui1cfg_data, NULL, 16); p->xauicfg[1] = simple_strtoul(vpd.xaui1cfg_data, NULL, 16);
} }
for (i = 0; i < 6; i++) ret = hex2bin(p->eth_base, vpd.na_data, 6);
p->eth_base[i] = hex_to_bin(vpd.na_data[2 * i]) * 16 + if (ret < 0)
hex_to_bin(vpd.na_data[2 * i + 1]); return -EINVAL;
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册