drivers/media/pci/mantis/mantis_dvb.h

Source file repositories/reference/linux-study-clean/drivers/media/pci/mantis/mantis_dvb.h

File Facts

System
Linux kernel
Corpus path
drivers/media/pci/mantis/mantis_dvb.h
Extension
.h
Size
530 bytes
Lines
24
Domain
Driver Families
Bucket
drivers/media
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

Mantis PCI bridge driver

	Copyright (C) Manu Abraham (abraham.manu@gmail.com)

*/

#ifndef __MANTIS_DVB_H
#define __MANTIS_DVB_H

enum mantis_power {
	POWER_OFF	= 0,
	POWER_ON	= 1
};

extern int mantis_frontend_power(struct mantis_pci *mantis, enum mantis_power power);
extern void mantis_frontend_soft_reset(struct mantis_pci *mantis);

extern int mantis_dvb_init(struct mantis_pci *mantis);
extern int mantis_dvb_exit(struct mantis_pci *mantis);

#endif /* __MANTIS_DVB_H */

Annotation

Implementation Notes