https://github.com/torvalds/linux
Revision d4e3e52b4dd57b1cfd4b43a20976385463e16126 authored by Drew Fustini on 07 May 2021, 01:06:18 UTC, committed by Linus Torvalds on 07 May 2021, 07:26:34 UTC
Add typo "overflw" for "overflow".  This typo was found and fixed in
drivers/clocksource/timer-pistachio.c.

Link: https://lore.kernel.org/lkml/20210305090315.384547-1-drew@beagleboard.org/
Link: https://lkml.kernel.org/r/20210305095151.388182-1-drew@beagleboard.org
Signed-off-by: Drew Fustini <drew@beagleboard.org>
Suggested-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent a4799be
Raw File
Tip revision: d4e3e52b4dd57b1cfd4b43a20976385463e16126 authored by Drew Fustini on 07 May 2021, 01:06:18 UTC
scripts/spelling.txt: add "overflw"
Tip revision: d4e3e52
booting-dt.rst
.. SPDX-License-Identifier: GPL-2.0

DeviceTree Booting
------------------

  There is one single 32bit entry point to the kernel at code32_start,
  the decompressor (the real mode entry point goes to the same  32bit
  entry point once it switched into protected mode). That entry point
  supports one calling convention which is documented in
  Documentation/x86/boot.rst
  The physical pointer to the device-tree block is passed via setup_data
  which requires at least boot protocol 2.09.
  The type filed is defined as

  #define SETUP_DTB                      2

  This device-tree is used as an extension to the "boot page". As such it
  does not parse / consider data which is already covered by the boot
  page. This includes memory size, reserved ranges, command line arguments
  or initrd address. It simply holds information which can not be retrieved
  otherwise like interrupt routing or a list of devices behind an I2C bus.
back to top