diff mbox series

[net-next,5/5] ionic: add decode for IONIC_RC_ENOSUPP

Message ID 20200316021428.48919-6-snelson@pensando.io
State Changes Requested
Delegated to: David Miller
Headers show
Series ionic bits and bytes | expand

Commit Message

Shannon Nelson March 16, 2020, 2:14 a.m. UTC
Signed-off-by: Shannon Nelson <snelson@pensando.io>
---
 drivers/net/ethernet/pensando/ionic/ionic_main.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Leon Romanovsky March 16, 2020, 6:49 a.m. UTC | #1
On Sun, Mar 15, 2020 at 07:14:28PM -0700, Shannon Nelson wrote:
> Signed-off-by: Shannon Nelson <snelson@pensando.io>
> ---
>  drivers/net/ethernet/pensando/ionic/ionic_main.c | 3 +++
>  1 file changed, 3 insertions(+)
>

Please try to refrain from patches with empty commit messages.
See submitting-patches guide, section about canonical patch format.
https://elixir.bootlin.com/linux/latest/source/Documentation/process/submitting-patches.rst#L665

Thanks
diff mbox series

Patch

diff --git a/drivers/net/ethernet/pensando/ionic/ionic_main.c b/drivers/net/ethernet/pensando/ionic/ionic_main.c
index e4a76e66f542..c5e3d7639f7e 100644
--- a/drivers/net/ethernet/pensando/ionic/ionic_main.c
+++ b/drivers/net/ethernet/pensando/ionic/ionic_main.c
@@ -58,6 +58,8 @@  static const char *ionic_error_to_str(enum ionic_status_code code)
 		return "IONIC_RC_BAD_ADDR";
 	case IONIC_RC_DEV_CMD:
 		return "IONIC_RC_DEV_CMD";
+	case IONIC_RC_ENOSUPP:
+		return "IONIC_RC_ENOSUPP";
 	case IONIC_RC_ERROR:
 		return "IONIC_RC_ERROR";
 	case IONIC_RC_ERDMA:
@@ -76,6 +78,7 @@  static int ionic_error_to_errno(enum ionic_status_code code)
 	case IONIC_RC_EQTYPE:
 	case IONIC_RC_EQID:
 	case IONIC_RC_EINVAL:
+	case IONIC_RC_ENOSUPP:
 		return -EINVAL;
 	case IONIC_RC_EPERM:
 		return -EPERM;