Skip to content

Commit

Permalink
Removed TAB
Browse files Browse the repository at this point in the history
  • Loading branch information
nakarlsson committed May 14, 2016
1 parent 4dd1401 commit 8a8ec82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions oshw/intime/nicdrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,13 @@ int ecx_setupnic(ecx_portt *port, const char *ifname, int secondary)
if (status != E_OK)
{
ECAT_PRINT_ERROR("hpeOpen failed with status %04x ", status);
if(status == E_EXIST) ECAT_PRINT_ERROR("E_EXIST\n");
else if(status == E_STATE) ECAT_PRINT_ERROR("E_STATE\n");
else if(status == E_PARAM) ECAT_PRINT_ERROR("E_PARAM\n");
else if(status == E_INVALID_ADDR) ECAT_PRINT_ERROR("E_INVALID_ADDR\n");
else if(status == E_IO) ECAT_PRINT_ERROR("E_IO\n");
else if(status == E_TIME) ECAT_PRINT_ERROR("E_TIME\n");
else ECAT_PRINT_ERROR("UNKNOWN\n");
result = 0;
goto end;
}
Expand Down

0 comments on commit 8a8ec82

Please sign in to comment.