move asm/unaligned.h to linux/unaligned.hasm/unaligned.h is always an include of asm-generic/unaligned.h;might as well move that thing to linux/unaligned.h and includethat - there's nothing arch-
move asm/unaligned.h to linux/unaligned.hasm/unaligned.h is always an include of asm-generic/unaligned.h;might as well move that thing to linux/unaligned.h and includethat - there's nothing arch-specific in that header.auto-generated by the following:for i in `git grep -l -w asm/unaligned.h`; do sed -i -e "s/asm\/unaligned.h/linux\/unaligned.h/" $idonefor i in `git grep -l -w asm-generic/unaligned.h`; do sed -i -e "s/asm-generic\/unaligned.h/linux\/unaligned.h/" $idonegit mv include/asm-generic/unaligned.h include/linux/unaligned.hgit mv tools/include/asm-generic/unaligned.h tools/include/linux/unaligned.hsed -i -e "/unaligned.h/d" include/asm-generic/Kbuildsed -i -e "s/__ASM_GENERIC/__LINUX/" include/linux/unaligned.h tools/include/linux/unaligned.h
show more ...
Documentation: Fix spelling mistakesCorrect spelling mistakes in the documentation to improve readability.Signed-off-by: Amit Vadhavana <[email protected]>Reviewed-by: Bjorn Helgaas <bhelgaas@
Documentation: Fix spelling mistakesCorrect spelling mistakes in the documentation to improve readability.Signed-off-by: Amit Vadhavana <[email protected]>Reviewed-by: Bjorn Helgaas <[email protected]>Signed-off-by: Jonathan Corbet <[email protected]>Link: https://lore.kernel.org/r/[email protected]
docs: kernel_feat.py: fix potential command injectionThe kernel-feat directive passes its argument straight to the shell.This is unfortunate and unnecessary.Let's always use paths relative to $s
docs: kernel_feat.py: fix potential command injectionThe kernel-feat directive passes its argument straight to the shell.This is unfortunate and unnecessary.Let's always use paths relative to $srctree/Documentation/ and usesubprocess.check_call() instead of subprocess.Popen(shell=True).This also makes the code shorter.This is analogous to commit 3231dd586277 ("docs: kernel_abi.py: fixcommand injection") where we did exactly the same thing forkernel_abi.py, somehow I completely missed this one.Link: https://fosstodon.org/@jani/111676532203641247Reported-by: Jani Nikula <[email protected]>Signed-off-by: Vegard Nossum <[email protected]>Cc: [email protected]Signed-off-by: Jonathan Corbet <[email protected]>Link: https://lore.kernel.org/r/[email protected]
Documentation: Fix typosFix typos in Documentation.Signed-off-by: Bjorn Helgaas <[email protected]>Link: https://lore.kernel.org/r/[email protected]Signed-off-by: Jon
Documentation: Fix typosFix typos in Documentation.Signed-off-by: Bjorn Helgaas <[email protected]>Link: https://lore.kernel.org/r/[email protected]Signed-off-by: Jonathan Corbet <[email protected]>
Documentation: arm: Add bootargs to the table of added DT parametersThe bootargs node is also added by the EFI stub in the functionupdate_fdt(), so add it to the table.Signed-off-by: Alexandre G
Documentation: arm: Add bootargs to the table of added DT parametersThe bootargs node is also added by the EFI stub in the functionupdate_fdt(), so add it to the table.Signed-off-by: Alexandre Ghiti <[email protected]>Reviewed-by: Atish Patra <[email protected]>Reviewed-by: Song Shuai <[email protected]>Signed-off-by: Jonathan Corbet <[email protected]>Link: https://lore.kernel.org/r/[email protected]
arm: docs: Move Arm documentation to Documentation/arch/Architecture-specific documentation is being moved into Documentation/arch/as a way of cleaning up the top-level documentation directory and
arm: docs: Move Arm documentation to Documentation/arch/Architecture-specific documentation is being moved into Documentation/arch/as a way of cleaning up the top-level documentation directory and makingthe docs hierarchy more closely match the source hierarchy. MoveDocumentation/arm into arch/ (along with the Chinese equvalenttranslations).Cc: Maxime Coquelin <[email protected]>Cc: Chen-Yu Tsai <[email protected]>Cc: Jernej Skrabec <[email protected]>Cc: Samuel Holland <[email protected]>Cc: Krzysztof Kozlowski <[email protected]>Cc: Alim Akhtar <[email protected]>Cc: Alex Shi <[email protected]>Cc: [email protected]Cc: [email protected]Cc: [email protected]Acked-by: Alexandre TORGUE <[email protected]>Reviewed-by: Yanteng Si <[email protected]>Signed-off-by: Jonathan Corbet <[email protected]>