drivers/staging/greybus/spilib.h

Source file repositories/reference/linux-study-clean/drivers/staging/greybus/spilib.h

File Facts

System
Linux kernel
Corpus path
drivers/staging/greybus/spilib.h
Extension
.h
Size
588 bytes
Lines
27
Domain
Driver Families
Bucket
drivers/staging
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 spilib_ops {
	int (*prepare_transfer_hardware)(struct device *dev);
	void (*unprepare_transfer_hardware)(struct device *dev);
};

int gb_spilib_master_init(struct gb_connection *connection,
			  struct device *dev, struct spilib_ops *ops);
void gb_spilib_master_exit(struct gb_connection *connection);

#endif /* __SPILIB_H */

Annotation

Implementation Notes