1234567891011121314151617181920212223242526 |
- #ifndef _SPARC_IDPROM_H
- #define _SPARC_IDPROM_H
- #include <linux/types.h>
- struct idprom {
- u8 id_format;
- u8 id_machtype;
- u8 id_ethaddr[6];
- s32 id_date;
- u32 id_sernum:24;
- u8 id_cksum;
- u8 reserved[16];
- };
- extern struct idprom *idprom;
- void idprom_init(void);
- #endif
|