diff options
| author | Yousef Alhouseen <alhouseenyousef@gmail.com> | 2026-06-24 14:28:35 +0200 |
|---|---|---|
| committer | Dave Jiang <dave.jiang@intel.com> | 2026-06-29 08:40:06 -0700 |
| commit | fe7883d0e99a5558050c43bbfe29e2b44977f97f (patch) | |
| tree | 0946938da77cc981f69d2c50fd1f6b9f74cf5c7e | |
| parent | 8a13db9f899d149c3aab24abcb668121cfda5a4f (diff) | |
| download | linux-fe7883d0e99a5558050c43bbfe29e2b44977f97f.tar.gz linux-fe7883d0e99a5558050c43bbfe29e2b44977f97f.zip | |
cxl: fix mailbox return code description typo
Fix a typo in the CXL mailbox command return code description for the
interrupted-command case.
Signed-off-by: Yousef Alhouseen <alhouseenyousef@gmail.com>
Reviewed-by: Richard Cheng <icheng@nvidia.com>
Reviewed-by: Ira Weiny <iweiny@kernel.org>
Link: https://patch.msgid.link/20260624122835.5656-1-alhouseenyousef@gmail.com
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
| -rw-r--r-- | drivers/cxl/cxlmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cxl/cxlmem.h b/drivers/cxl/cxlmem.h index ed419d0c59f2..503ae2864591 100644 --- a/drivers/cxl/cxlmem.h +++ b/drivers/cxl/cxlmem.h @@ -183,7 +183,7 @@ static inline struct cxl_ep *cxl_ep_load(struct cxl_port *port, C(MBUNSUPPORTED, -ENXIO, "unsupported on the mailbox it was issued on"),\ C(PAYLOADLEN, -ENXIO, "invalid payload length"), \ C(LOG, -ENXIO, "invalid or unsupported log page"), \ - C(INTERRUPTED, -ENXIO, "asynchronous event occured"), \ + C(INTERRUPTED, -ENXIO, "asynchronous event occurred"), \ C(FEATUREVERSION, -ENXIO, "unsupported feature version"), \ C(FEATURESELVALUE, -ENXIO, "unsupported feature selection value"), \ C(FEATURETRANSFERIP, -ENXIO, "feature transfer in progress"), \ |
