drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv50.c

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv50.c

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv50.c
Extension
.c
Size
1420 bytes
Lines
37
Domain
Driver Families
Bucket
drivers/gpu
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

#include "pad.h"
#include "bus.h"

static const struct nvkm_i2c_pad_func
nv50_i2c_pad_func = {
	.bus_new_4 = nv50_i2c_bus_new,
};

int
nv50_i2c_pad_new(struct nvkm_i2c *i2c, int id, struct nvkm_i2c_pad **ppad)
{
	return nvkm_i2c_pad_new_(&nv50_i2c_pad_func, i2c, id, ppad);
}

Annotation

Implementation Notes