arch/mips/boot/compressed/uart-prom.c

Source file repositories/reference/linux-study-clean/arch/mips/boot/compressed/uart-prom.c

File Facts

System
Linux kernel
Corpus path
arch/mips/boot/compressed/uart-prom.c
Extension
.c
Size
125 bytes
Lines
10
Domain
Architecture Layer
Bucket
arch/mips
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
#include <asm/setup.h>

#include "decompress.h"

void putc(char c)
{
	prom_putchar(c);
}

Annotation

Implementation Notes