Commit 71dbc487 authored by Jonathan Corbet's avatar Jonathan Corbet

docs: move ia64 architecture docs under Documentation/arch/

Architecture-specific documentation is being moved into Documentation/arch/
as a way of cleaning up the top-level documentation directory and making
the docs hierarchy more closely match the source hierarchy.  Move
Documentation/ia64 into arch/ and fix all in-tree references.
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent fde2e40f
...@@ -12,7 +12,7 @@ implementation. ...@@ -12,7 +12,7 @@ implementation.
arc/index arc/index
../arm/index ../arm/index
../arm64/index ../arm64/index
../ia64/index ia64/index
../loongarch/index ../loongarch/index
../m68k/index ../m68k/index
../mips/index ../mips/index
......
...@@ -9724,7 +9724,7 @@ F: include/linux/i3c/ ...@@ -9724,7 +9724,7 @@ F: include/linux/i3c/
IA64 (Itanium) PLATFORM IA64 (Itanium) PLATFORM
L: linux-ia64@vger.kernel.org L: linux-ia64@vger.kernel.org
S: Orphan S: Orphan
F: Documentation/ia64/ F: Documentation/arch/ia64/
F: arch/ia64/ F: arch/ia64/
IBM Operation Panel Input Driver IBM Operation Panel Input Driver
......
...@@ -853,7 +853,7 @@ valid_phys_addr_range (phys_addr_t phys_addr, unsigned long size) ...@@ -853,7 +853,7 @@ valid_phys_addr_range (phys_addr_t phys_addr, unsigned long size)
* /dev/mem reads and writes use copy_to_user(), which implicitly * /dev/mem reads and writes use copy_to_user(), which implicitly
* uses a granule-sized kernel identity mapping. It's really * uses a granule-sized kernel identity mapping. It's really
* only safe to do this for regions in kern_memmap. For more * only safe to do this for regions in kern_memmap. For more
* details, see Documentation/ia64/aliasing.rst. * details, see Documentation/arch/ia64/aliasing.rst.
*/ */
attr = kern_mem_attribute(phys_addr, size); attr = kern_mem_attribute(phys_addr, size);
if (attr & EFI_MEMORY_WB || attr & EFI_MEMORY_UC) if (attr & EFI_MEMORY_WB || attr & EFI_MEMORY_UC)
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include <asm/native/inst.h> #include <asm/native/inst.h>
/* /*
* See Documentation/ia64/fsys.rst for details on fsyscalls. * See Documentation/arch/ia64/fsys.rst for details on fsyscalls.
* *
* On entry to an fsyscall handler: * On entry to an fsyscall handler:
* r10 = 0 (i.e., defaults to "successful syscall return") * r10 = 0 (i.e., defaults to "successful syscall return")
......
...@@ -43,7 +43,7 @@ ioremap (unsigned long phys_addr, unsigned long size) ...@@ -43,7 +43,7 @@ ioremap (unsigned long phys_addr, unsigned long size)
/* /*
* For things in kern_memmap, we must use the same attribute * For things in kern_memmap, we must use the same attribute
* as the rest of the kernel. For more details, see * as the rest of the kernel. For more details, see
* Documentation/ia64/aliasing.rst. * Documentation/arch/ia64/aliasing.rst.
*/ */
attr = kern_mem_attribute(phys_addr, size); attr = kern_mem_attribute(phys_addr, size);
if (attr & EFI_MEMORY_WB) if (attr & EFI_MEMORY_WB)
......
...@@ -448,7 +448,7 @@ pci_mmap_legacy_page_range(struct pci_bus *bus, struct vm_area_struct *vma, ...@@ -448,7 +448,7 @@ pci_mmap_legacy_page_range(struct pci_bus *bus, struct vm_area_struct *vma,
return -ENOSYS; return -ENOSYS;
/* /*
* Avoid attribute aliasing. See Documentation/ia64/aliasing.rst * Avoid attribute aliasing. See Documentation/arch/ia64/aliasing.rst
* for more details. * for more details.
*/ */
if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size)) if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
......
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