drivers/gpib/include/gpib_state_machines.h

Source file repositories/reference/linux-study-clean/drivers/gpib/include/gpib_state_machines.h

File Facts

System
Linux kernel
Corpus path
drivers/gpib/include/gpib_state_machines.h
Extension
.h
Size
540 bytes
Lines
24
Domain
Driver Families
Bucket
drivers/gpib
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

#ifndef _GPIB_STATE_MACHINES_H
#define _GPIB_STATE_MACHINES_H

enum talker_function_state {
	talker_idle,
	talker_addressed,
	talker_active,
	serial_poll_active
};

enum listener_function_state {
	listener_idle,
	listener_addressed,
	listener_active
};

#endif	// _GPIB_STATE_MACHINES_H

Annotation

Implementation Notes