diff options
author | Jiang Jian <jiangjian@cdjrlc.com> | 2022-06-21 20:53:21 +0800 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2022-06-22 12:50:56 +1000 |
commit | 882c835b71e22ca82361dab3b60b85b557abd72f (patch) | |
tree | 5cab58e1aa6b5b0ba23fa7eb54ae70d4bca51995 | |
parent | 7dc3ba0a071892ea212f90f63738fd9f81b1f638 (diff) | |
download | lwn-882c835b71e22ca82361dab3b60b85b557abd72f.tar.gz lwn-882c835b71e22ca82361dab3b60b85b557abd72f.zip |
cxl: drop unexpected word "the" in the comments
there is an unexpected word "the" in the comments that need to be dropped
file: drivers/misc/cxl/cxl.h
line: 1107
+/* check if the given pci_dev is on the the cxl vphb bus */
changed to
+/* check if the given pci_dev is on the cxl vphb bus */
Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>
Acked-by: Andrew Donnellan <ajd@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220621125321.122280-1-jiangjian@cdjrlc.com
-rw-r--r-- | drivers/misc/cxl/cxl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/cxl/cxl.h b/drivers/misc/cxl/cxl.h index 7a6dd91987fd..0562071cdd4a 100644 --- a/drivers/misc/cxl/cxl.h +++ b/drivers/misc/cxl/cxl.h @@ -1104,7 +1104,7 @@ extern const struct cxl_backend_ops cxl_native_ops; extern const struct cxl_backend_ops cxl_guest_ops; extern const struct cxl_backend_ops *cxl_ops; -/* check if the given pci_dev is on the the cxl vphb bus */ +/* check if the given pci_dev is on the cxl vphb bus */ bool cxl_pci_is_vphb_device(struct pci_dev *dev); /* decode AFU error bits in the PSL register PSL_SERR_An */ |