drivers/s390/cio/eadm_sch.h

Source file repositories/reference/linux-study-clean/drivers/s390/cio/eadm_sch.h

File Facts

System
Linux kernel
Corpus path
drivers/s390/cio/eadm_sch.h
Extension
.h
Size
561 bytes
Lines
24
Domain
Driver Families
Bucket
drivers/s390
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

struct eadm_private {
	union orb orb;
	enum {EADM_IDLE, EADM_BUSY, EADM_NOT_OPER} state;
	struct completion *completion;
	struct subchannel *sch;
	struct timer_list timer;
	struct list_head head;
} __aligned(8);

#define get_eadm_private(n) ((struct eadm_private *)dev_get_drvdata(&n->dev))
#define set_eadm_private(n, p) (dev_set_drvdata(&n->dev, p))

#endif

Annotation

Implementation Notes