Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation/powerpc: Fix path to the powerpc directory

ppc -> powerpc

Signed-off-by: Thomas Waldecker <thomas.waldecker@gmail.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by

Thomas Waldecker and committed by
Benjamin Herrenschmidt
d69f1d7f bf99de36

+5 -5
+5 -5
Documentation/powerpc/cpu_features.txt
··· 11 11 sleep modes. 12 12 13 13 Detection of the feature set is simple. A list of processors can be found in 14 - arch/ppc/kernel/cputable.c. The PVR register is masked and compared with each 15 - value in the list. If a match is found, the cpu_features of cur_cpu_spec is 16 - assigned to the feature bitmask for this processor and a __setup_cpu function 17 - is called. 14 + arch/powerpc/kernel/cputable.c. The PVR register is masked and compared with 15 + each value in the list. If a match is found, the cpu_features of cur_cpu_spec 16 + is assigned to the feature bitmask for this processor and a __setup_cpu 17 + function is called. 18 18 19 19 C code may test 'cur_cpu_spec[smp_processor_id()]->cpu_features' for a 20 20 particular feature bit. This is done in quite a few places, for example ··· 51 51 52 52 The END_FTR_SECTION macros are implemented by storing information about this 53 53 code in the '__ftr_fixup' ELF section. When do_cpu_ftr_fixups 54 - (arch/ppc/kernel/misc.S) is invoked, it will iterate over the records in 54 + (arch/powerpc/kernel/misc.S) is invoked, it will iterate over the records in 55 55 __ftr_fixup, and if the required feature is not present it will loop writing 56 56 nop's from each BEGIN_FTR_SECTION to END_FTR_SECTION.