net/qede/base: fix remove the unneeded conversion to LE

Remove the unneeded conversion to LE when writing to the 32-bit
XSDM_REG_OPERATION_GEN register

Fixes: ec94dbc573 ("qede: add base driver")

Signed-off-by: Rasesh Mody <rasesh.mody@cavium.com>
This commit is contained in:
Rasesh Mody 2017-03-17 23:53:30 -07:00 committed by Ferruh Yigit
parent 96d1cace81
commit 32376ac6b5

View File

@ -788,10 +788,9 @@ enum _ecore_status_t ecore_final_cleanup(struct ecore_hwfn *p_hwfn,
DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
"Sending final cleanup for PFVF[%d] [Command %08x\n]",
id, OSAL_CPU_TO_LE32(command));
id, command);
ecore_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN,
OSAL_CPU_TO_LE32(command));
ecore_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
/* Poll until completion */
while (!REG_RD(p_hwfn, addr) && count--)