arch/powerpc/boot/epapr-wrapper.c

Source file repositories/reference/linux-study-clean/arch/powerpc/boot/epapr-wrapper.c

File Facts

System
Linux kernel
Corpus path
arch/powerpc/boot/epapr-wrapper.c
Extension
.c
Size
328 bytes
Lines
11
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
extern void epapr_platform_init(unsigned long r3, unsigned long r4,
				unsigned long r5, unsigned long r6,
				unsigned long r7);

void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
		   unsigned long r6, unsigned long r7)
{
	epapr_platform_init(r3, r4, r5, r6, r7);
}

Annotation

Implementation Notes