/src/sys/arch/newsmips/stand/boot/ |
promdev.h | 1 struct romdev { struct 10 int net_open(struct romdev *); 11 int net_close(struct romdev *); 13 int prom_getether(struct romdev *, u_char *);
|
devopen.c | 68 struct romdev romdev; variable in typeref:struct:romdev 81 strcpy(romdev.devname, fname); 82 cp = strchr(romdev.devname, ')') + 1; 85 fd = apcall_open(romdev.devname, 2); 87 fd = rom_open(romdev.devname, 2); 89 DPRINTF("devname = %s, fd = %d\n", romdev.devname, fd); 93 romdev.fd = fd; 94 if (strncmp(romdev.devname, "sonic", 5) == 0) 95 romdev.devtype = DT_NET [all...] |
/src/sys/arch/news68k/stand/boot/ |
devopen.c | 57 struct romdev { struct 59 } romdev; variable in typeref:struct:romdev 79 romdev.fd = fd; 82 f->f_devdata = &romdev; 99 struct romdev *dev = f->f_devdata; 110 struct romdev *dev = devdata;
|