diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-04-11 15:41:09 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-04-11 15:41:09 +0000 |
commit | c8e7385194f51a62649392e4ed7d3186fd2902e4 (patch) | |
tree | b31048ca00e92e57b5d6941227423ccb1182efa9 /sys/dev/pci/if_txp.c | |
parent | e02f92519b42c735e1513a55492f3ec43fb9b910 (diff) |
make this load the linux style image file as distributed on 3com's
website. The license is still too restrictive to be in the tree, though.
Diffstat (limited to 'sys/dev/pci/if_txp.c')
-rw-r--r-- | sys/dev/pci/if_txp.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/sys/dev/pci/if_txp.c b/sys/dev/pci/if_txp.c index b92b5f4c73c..aca2940ae5f 100644 --- a/sys/dev/pci/if_txp.c +++ b/sys/dev/pci/if_txp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_txp.c,v 1.11 2001/04/10 22:10:09 jason Exp $ */ +/* $OpenBSD: if_txp.c,v 1.12 2001/04/11 15:41:08 jason Exp $ */ /* * Copyright (c) 2001 @@ -81,7 +81,10 @@ #include <dev/pci/pcidevs.h> #include <dev/pci/if_txpreg.h> -#include <dev/microcode/typhoon/typhoon_image.h> + +#define u32 u_int32_t +#include <dev/microcode/typhoon/3c990img.h> +#undef u32 int txp_probe __P((struct device *, void *, void *)); void txp_attach __P((struct device *, struct device *, void *)); @@ -349,7 +352,7 @@ txp_download_fw(sc) /* Ack the status */ WRITE_REG(sc, TXP_ISR, TXP_INT_A2H_0); - fileheader = (struct txp_fw_file_header *)TyphoonImage; + fileheader = (struct txp_fw_file_header *)tc990image; if (strncmp("TYPHOON", fileheader->magicid, sizeof(fileheader->magicid))) { printf(": fw invalid magic\n"); return (-1); @@ -364,7 +367,7 @@ txp_download_fw(sc) return (-1); } - secthead = (struct txp_fw_section_header *)(TyphoonImage + + secthead = (struct txp_fw_section_header *)(((u_int8_t *)tc990image) + sizeof(struct txp_fw_file_header)); for (sect = 0; sect < fileheader->nsections; sect++) { @@ -437,15 +440,15 @@ txp_download_fw_section(sc, sect, sectnum) return (0); /* Make sure we aren't past the end of the image */ - rseg = ((u_int8_t *)sect) - ((u_int8_t *)TyphoonImage); - if (rseg >= sizeof(TyphoonImage)) { + rseg = ((u_int8_t *)sect) - ((u_int8_t *)tc990image); + if (rseg >= sizeof(tc990image)) { printf(": fw invalid section address, section %d\n", sectnum); return (-1); } /* Make sure this section doesn't go past the end */ rseg += sect->nbytes; - if (rseg >= sizeof(TyphoonImage)) { + if (rseg >= sizeof(tc990image)) { printf(": fw truncated section %d\n", sectnum); return (-1); } |