We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 840eef5 commit b2133d8Copy full SHA for b2133d8
drivers/net/ethernet/pensando/ionic/ionic_main.c
@@ -58,6 +58,8 @@ static const char *ionic_error_to_str(enum ionic_status_code code)
58
return "IONIC_RC_BAD_ADDR";
59
case IONIC_RC_DEV_CMD:
60
return "IONIC_RC_DEV_CMD";
61
+ case IONIC_RC_ENOSUPP:
62
+ return "IONIC_RC_ENOSUPP";
63
case IONIC_RC_ERROR:
64
return "IONIC_RC_ERROR";
65
case IONIC_RC_ERDMA:
@@ -76,6 +78,7 @@ static int ionic_error_to_errno(enum ionic_status_code code)
76
78
case IONIC_RC_EQTYPE:
77
79
case IONIC_RC_EQID:
80
case IONIC_RC_EINVAL:
81
82
return -EINVAL;
83
case IONIC_RC_EPERM:
84
return -EPERM;
0 commit comments