diff options
| author | Manuel Ebner <manuelebner@mailbox.org> | 2026-06-27 11:31:08 +0200 |
|---|---|---|
| committer | Jason Gunthorpe <jgg@nvidia.com> | 2026-07-02 14:23:19 -0300 |
| commit | ce334fce5412f6ad687baa2c408d74a8636667bf (patch) | |
| tree | 0bc2a3abe1e83021396eefd624991ef317e12aa7 | |
| parent | 011199f46f44a9fd93a9e5ab5d7fd1328d80e9bf (diff) | |
| download | linux-next-ce334fce5412f6ad687baa2c408d74a8636667bf.tar.gz linux-next-ce334fce5412f6ad687baa2c408d74a8636667bf.zip | |
docs: infiniband: fix bracket
Remove needless ')'.
Link: https://patch.msgid.link/r/20260627093107.31068-2-manuelebner@mailbox.org
Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
| -rw-r--r-- | Documentation/infiniband/user_mad.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/infiniband/user_mad.rst b/Documentation/infiniband/user_mad.rst index d88abfc0e370..cd66e7623d66 100644 --- a/Documentation/infiniband/user_mad.rst +++ b/Documentation/infiniband/user_mad.rst @@ -62,7 +62,7 @@ Receiving MADs struct ib_user_mad *mad; mad = malloc(sizeof *mad + 256); ret = read(fd, mad, sizeof *mad + 256); - if (ret == -ENOSPC)) { + if (ret == -ENOSPC) { length = mad.length; free(mad); mad = malloc(sizeof *mad + length); |
