Commit 7d3d3254 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Jonathan Corbet

docs: fix pointers to io-mapping.rst and io_ordering.rst files

Those files got moved, but cross-references still point to the
wrong places.

Fixes: fcd68072 ("Documentation: Add io-mapping.rst to driver-api manual")
Fixes: d1ce3500 ("Documentation: Add io_ordering.rst to driver-api manual")
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Reviewed-by: default avatarAlex Shi <alex.shi@linux.alibaba.com>
Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/c0205119db4fef536272cb0a183b6c14c2c8bf4c.1583927470.git.mchehab+huawei@kernel.orgSigned-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent 0a07bef6
...@@ -239,7 +239,7 @@ from the PCI device config space. Use the values in the pci_dev structure ...@@ -239,7 +239,7 @@ from the PCI device config space. Use the values in the pci_dev structure
as the PCI "bus address" might have been remapped to a "host physical" as the PCI "bus address" might have been remapped to a "host physical"
address by the arch/chip-set specific kernel support. address by the arch/chip-set specific kernel support.
See Documentation/io-mapping.txt for how to access device registers See Documentation/driver-api/io-mapping.rst for how to access device registers
or device memory. or device memory.
The device driver needs to call pci_request_region() to verify The device driver needs to call pci_request_region() to verify
......
Chinese translated version of Documentation/io_ordering.txt Chinese translated version of Documentation/driver-api/io_ordering.rst
If you have any comment or update to the content, please contact the If you have any comment or update to the content, please contact the
original document maintainer directly. However, if you have a problem original document maintainer directly. However, if you have a problem
...@@ -8,7 +8,7 @@ or if there is a problem with the translation. ...@@ -8,7 +8,7 @@ or if there is a problem with the translation.
Chinese maintainer: Lin Yongting <linyongting@gmail.com> Chinese maintainer: Lin Yongting <linyongting@gmail.com>
--------------------------------------------------------------------- ---------------------------------------------------------------------
Documentation/io_ordering.txt 的中文翻译 Documentation/driver-api/io_ordering.rst 的中文翻译
如果想评论或更新本文的内容,请直接联系原文档的维护者。如果你使用英文 如果想评论或更新本文的内容,请直接联系原文档的维护者。如果你使用英文
交流有困难的话,也可以向中文版维护者求助。如果本翻译更新不及时或者翻 交流有困难的话,也可以向中文版维护者求助。如果本翻译更新不及时或者翻
......
...@@ -27,7 +27,7 @@ extern void __uc32_iounmap(volatile void __iomem *addr); ...@@ -27,7 +27,7 @@ extern void __uc32_iounmap(volatile void __iomem *addr);
* ioremap and friends. * ioremap and friends.
* *
* ioremap takes a PCI memory address, as specified in * ioremap takes a PCI memory address, as specified in
* Documentation/io-mapping.txt. * Documentation/driver-api/io-mapping.rst.
* *
*/ */
#define ioremap(cookie, size) __uc32_ioremap(cookie, size) #define ioremap(cookie, size) __uc32_ioremap(cookie, size)
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* The io_mapping mechanism provides an abstraction for mapping * The io_mapping mechanism provides an abstraction for mapping
* individual pages from an io device to the CPU in an efficient fashion. * individual pages from an io device to the CPU in an efficient fashion.
* *
* See Documentation/io-mapping.txt * See Documentation/driver-api/io-mapping.rst
*/ */
struct io_mapping { struct io_mapping {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment