Remove code describing pre 5.x system

This commit is contained in:
Warner Losh 2006-01-10 05:21:01 +00:00
parent 0836985219
commit 9b9c5e1cb1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154163

View File

@ -154,25 +154,6 @@ struct dev_desc {
uint32_t product; /* Product ID */
uint32_t prodext; /* Product ID (extended) */
};
#if __FreeBSD_version < 5000000 /* 4.x compatibility only. */
#define PIOCSDRVOLD _IOWR('P', 6, struct dev_desc_old) /* Set driver */
struct dev_desc_old {
char name[16]; /* Driver name */
int unit; /* Driver unit number */
unsigned long mem; /* Memory address of driver */
int memsize; /* Memory size (if used) */
int iobase; /* base of I/O ports */
int iosize; /* Length of I/O ports */
int irqmask; /* Interrupt number(s) to allocate */
int flags; /* Device flags */
uint8_t misc[DEV_MISC_LEN]; /* For any random info */
uint8_t manufstr[DEV_MAX_CIS_LEN];
uint8_t versstr[DEV_MAX_CIS_LEN];
uint32_t manufacturer; /* Manufacturer ID */
uint32_t product; /* Product ID */
uint32_t prodext; /* Product ID (extended) */
};
#endif
#define DEV_DESC_HAS_SIZE 1
struct pcic_reg {