]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/hwinfo/src/hd/isa.h
Signierten GPG-Schluessel importiert.
[people/pmueller/ipfire-2.x.git] / src / hwinfo / src / hd / isa.h
1
2 typedef struct isa_isdn_s {
3 struct isa_isdn_s *next;
4 unsigned has_mem:1, has_io:1, has_irq:1;
5 unsigned type, subtype, mem, io, irq;
6 } isa_isdn_t;
7
8 isa_isdn_t *new_isa_isdn(isa_isdn_t **ii);
9
10 void hd_scan_isa(hd_data_t *hd_data);
11
12 isa_isdn_t *isdn_detect(void);